This repository contains the source code for the Open-source Fixed-point Model Checker extended with parallel processing capabilities.
This version of OFMC utilises all available cores during both the BFS and the DFS phases and can achieve massive speedups depending on the number of cores.
Instructions are provided for running locally, as well as on the DTU HPC cluster.
Tested on an 8-core CPU (2 x 2064MHz + 6 x 3228MHz), both versions of OFMC executed with --numSess 2 on an example protocol:
| OFMC | Parallel OFMC | speedup | |
|---|---|---|---|
| typed | 50s | 11s | 4,55 |
| untyped | 47m | 8m | 5,86 |
The workload seems to be evenly distributed across all 8 cores during both breadth-first and then depth-first searches:
- The Haskell Tool Stack
- Alex
- Happy
- make
- (optional) Threadscope
Alex, Happy and Threadscope can be installed using the stack install command. You might have to add some dependencies to extra-deps in stack.yaml for them to install, but you can remove those later.
Install lexer and parser generators if you haven't already:
$ stack install alex
$ stack install happyGenerate parser source files and build OFMC:
$ makeCopy the executable to PATH:
$ stack installDTU students can run OFMC on the LSF 10 High Performance Computing cluster:
- Access the cluster over
ssh(instructions) - Clone this repository
- Download a binary release of
stackfor Linux here - Set the
STACKvariable in the Makefile to point to thestackexecutable - Follow the steps to build the project
stack install will print where the ofmc binary was copied to. You can add it to PATH for simplicity. Example:
export PATH="/zhome/f1/2/143603/.local/bin:$PATH"You can execute OFMC on 20 cores and pray you don't get banned from using the HPC cluster ever again. Alternatively, you can learn how to schedule a job properly 🙃
