Skip to content

Commit

Permalink
[documentation] Update the installation doc, to tell users to select …
Browse files Browse the repository at this point in the history
…the PPDP19 branch.
  • Loading branch information
ptal committed May 13, 2019
1 parent 6811e08 commit 0d5562c
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
2 changes: 2 additions & 0 deletions benchmark/src/main/java/benchmark/bonsai/Problems.bonsai.java
Expand Up @@ -171,6 +171,7 @@ public static void checkTime(long start) {
}
}

// To test the overhead of abstraction inside modules, we inlined all the processes in a single process.
public proc inlined_golomb_iolb() =
single_space StackLR stack = new StackLR();
universe with stack in
Expand Down Expand Up @@ -299,6 +300,7 @@ private static IntVar rulerLengthVar(VarStore domains) {
return (IntVar)domains.model().getVars()[m - 1];
}

// To test the overhead of abstraction inside modules, we inlined all the processes in a single process.
public proc inlined_nqueens() =
single_space StackLR stack = new StackLR();
universe with stack in
Expand Down
11 changes: 10 additions & 1 deletion doc/src/PPDP19.md
Expand Up @@ -2,7 +2,16 @@

This supplementary material gives instructions to compile and run the examples and benchmarks presented in the paper submitted to PPDP19.

If you want to replicate any benchmark and running examples, please go through the [Getting Started](getting-started.html) section first.
If you want to replicate any benchmark and running examples, first install the compiler and runtime as follows:

```
git clone https://github.com/ptal/bonsai.git
cd bonsai
git checkout PPDP19
python3 setup.py
```

For more explanations, please go to the [Getting Started](getting-started.html) section (but do not forget to switch to the `PPDP19` branch).

## Demo of the examples in the paper

Expand Down

0 comments on commit 0d5562c

Please sign in to comment.