Ekdohibs / PolyGen

PolyGen is a code generator for the polyhedral model, written and proved in Coq.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Installing dependencies

The Coq development requires Coq version 8.7.2 and OCaml between 4.05.0 and 4.07.1 and may not work with newer versions of Coq and OCaml.

You will need the bundled version of the Verimag Polyhedra Library, which you can get with:

git submodule init
git submodule update --recursive

Some additional C and OCaml libraries are required, as described below.

We recommend to use either OPAM (the OCaml package manager) or Nix (a Linux package manager).

With OPAM

Create a new OPAM switch: opam switch create polygen 4.06.1+flambda. Install GMP, Debian/Ubuntu package libgmp-dev Install GLPK, Debian/Ubuntu package libglpk-dev Install eigen, Debian/Ubuntu package libeigen3-dev. Install the following ocaml packages: opam install zarith glpk menhir coq=8.7.2.

With Nix

Another way is to use nix. Type nix-shell to get a shell where all dependencies have been downloaded and installed. One way to install nix is:

curl https://nixos.org/nix/install | sh

Note that, if you use OPAM, the OPAM init scripts can add your current version of ocaml to your $PATH. In that case, it is advised to use nix-shell --pure, which will run a shell where all dependencies have been downloaded and installed, but no other programs will be available, avoiding the conflicts with a preexisting OPAM installation.

Compiling

There are four steps for compiling the code:

  • Setup the VPL: make vplsetup. This step compiles the bundled version of the Verimag Polyhedra Library that we use.
  • Compile the Coq files: make.
  • Extract the code generator to OCaml: make extract.
  • Compile the extracted code: make ocaml.

The executable running the code generator on different tests will be in ocaml/test. Just run ./ocaml/test, the results will be displayed on standard output.

Alternatively, if using nix, you can just type nix build, and the executable will be available in result/bin/test.

You can build the documentation with make documentation, and it will be available in doc/index.html, or result/doc/index.html if you used nix build.

About

PolyGen is a code generator for the polyhedral model, written and proved in Coq.

License:GNU Lesser General Public License v2.1


Languages

Language:Coq 94.6%Language:OCaml 4.2%Language:Makefile 0.9%Language:Nix 0.2%