mirror of
https://github.com/YosysHQ/sby.git
synced 2025-04-05 22:14:08 +00:00
Improve super_prove integration
This commit is contained in:
parent
7be08218cb
commit
9a718367ff
|
@ -16,7 +16,7 @@ formal tasks:
|
||||||
at the moment.)
|
at the moment.)
|
||||||
|
|
||||||
.. toctree::
|
.. toctree::
|
||||||
:maxdepth: 2
|
:maxdepth: 3
|
||||||
|
|
||||||
quickstart.rst
|
quickstart.rst
|
||||||
reference.rst
|
reference.rst
|
||||||
|
|
|
@ -8,19 +8,77 @@ The example files used in this chapter can be downloaded from `here
|
||||||
Installing
|
Installing
|
||||||
----------
|
----------
|
||||||
|
|
||||||
TBD
|
Follow the instructions below to install SymbiYosys and its dependencies.
|
||||||
|
Yosys, SymbiYosys, and Z3 are non-optional. The other packages are only
|
||||||
|
required for some engine configurations.
|
||||||
|
|
||||||
Until I find the time to write this section this links must suffice:
|
Prerequisites
|
||||||
|
~~~~~~~~~~~~~
|
||||||
|
|
||||||
|
Installing prerequisites (this command is for Ubuntu 16.04):
|
||||||
|
|
||||||
|
.. code-block:: text
|
||||||
|
|
||||||
|
sudo apt-get install build-essential clang bison flex libreadline-dev \
|
||||||
|
gawk tcl-dev libffi-dev git mercurial graphviz \
|
||||||
|
xdot pkg-config python python3 libftdi-dev
|
||||||
|
|
||||||
|
Yosys, Yosys-SMTBMC and ABC
|
||||||
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||||
|
|
||||||
|
Next install Yosys, Yosys-SMTBMC and ABC (``yosys-abc``):
|
||||||
|
|
||||||
|
.. code-block:: text
|
||||||
|
|
||||||
|
git clone https://github.com/cliffordwolf/yosys.git yosys
|
||||||
|
cd yosys
|
||||||
|
make -j$(nproc)
|
||||||
|
sudo make install
|
||||||
|
|
||||||
|
SymbiYosys
|
||||||
|
~~~~~~~~~~
|
||||||
|
|
||||||
|
.. code-block:: text
|
||||||
|
|
||||||
|
git clone https://github.com/cliffordwolf/SymbiYosys.git SymbiYosys
|
||||||
|
cd SymbiYosys
|
||||||
|
sudo make install
|
||||||
|
|
||||||
|
Z3
|
||||||
|
~~
|
||||||
|
|
||||||
|
.. code-block:: text
|
||||||
|
|
||||||
|
git clone https://github.com/Z3Prover/z3.git z3
|
||||||
|
cd z3
|
||||||
|
python scripts/mk_make.py
|
||||||
|
cd build
|
||||||
|
make -j$(nproc)
|
||||||
|
sudo make install
|
||||||
|
|
||||||
|
super_prove
|
||||||
|
~~~~~~~~~~~
|
||||||
|
|
||||||
|
Download the right binary .tar.gz for your system from http://downloads.bvsrc.org/super_prove/
|
||||||
|
and extract it to ``/usr/local/super_prove``.
|
||||||
|
|
||||||
|
Then create a wrapper script ``/usr/local/bin/suprove`` with the following contents:
|
||||||
|
|
||||||
|
.. code-block:: text
|
||||||
|
|
||||||
|
#!/bin/bash
|
||||||
|
tool=super_prove; if [ "$1" != "${1#+}" ]; then tool="${1#+}"; shift; fi
|
||||||
|
exec /usr/local/super_prove/bin/${tool}.sh "$@"
|
||||||
|
|
||||||
|
Other packages
|
||||||
|
~~~~~~~~~~~~~~
|
||||||
|
|
||||||
|
Until I find the time to write install guides for this packages, the following links must suffice:
|
||||||
|
|
||||||
* Yosys: http://www.clifford.at/yosys/
|
|
||||||
* SymbiYosys: https://github.com/cliffordwolf/SymbiYosys
|
|
||||||
* Z3: https://github.com/Z3Prover/z3
|
|
||||||
* Yices2: http://yices.csl.sri.com/
|
* Yices2: http://yices.csl.sri.com/
|
||||||
* Boolector: http://fmv.jku.at/boolector/
|
* Boolector: http://fmv.jku.at/boolector/
|
||||||
* super_prove: http://downloads.bvsrc.org/super_prove/
|
* Avy: https://arieg.bitbucket.io/avy/
|
||||||
|
* AIGER: http://fmv.jku.at/aiger/
|
||||||
(Yosys, SymbiYosys, and Z3 are non-optional. The other packages are only
|
|
||||||
required for some engine configurations.)
|
|
||||||
|
|
||||||
First step: A simple BMC example
|
First step: A simple BMC example
|
||||||
--------------------------------
|
--------------------------------
|
||||||
|
|
|
@ -44,6 +44,7 @@ sby [options] <jobname>.sby
|
||||||
--abc <path_to_executable>
|
--abc <path_to_executable>
|
||||||
--smtbmc <path_to_executable>
|
--smtbmc <path_to_executable>
|
||||||
--suprove <path_to_executable>
|
--suprove <path_to_executable>
|
||||||
|
--aigbmc <path_to_executable>
|
||||||
--avy <path_to_executable>
|
--avy <path_to_executable>
|
||||||
configure which executable to use for the respective tool
|
configure which executable to use for the respective tool
|
||||||
""")
|
""")
|
||||||
|
@ -51,7 +52,7 @@ sby [options] <jobname>.sby
|
||||||
|
|
||||||
try:
|
try:
|
||||||
opts, args = getopt.getopt(sys.argv[1:], "d:bf", ["yosys=",
|
opts, args = getopt.getopt(sys.argv[1:], "d:bf", ["yosys=",
|
||||||
"abc=", "smtbmc=", "suprove="])
|
"abc=", "smtbmc=", "suprove=", "aigbmc=", "avy="])
|
||||||
except:
|
except:
|
||||||
usage()
|
usage()
|
||||||
|
|
||||||
|
@ -70,6 +71,10 @@ for o, a in opts:
|
||||||
exe_paths["smtbmc"] = a
|
exe_paths["smtbmc"] = a
|
||||||
elif o == "--suprove":
|
elif o == "--suprove":
|
||||||
exe_paths["suprove"] = a
|
exe_paths["suprove"] = a
|
||||||
|
elif o == "--aigbmc":
|
||||||
|
exe_paths["aigbmc"] = a
|
||||||
|
elif o == "--avy":
|
||||||
|
exe_paths["avy"] = a
|
||||||
else:
|
else:
|
||||||
usage()
|
usage()
|
||||||
|
|
||||||
|
|
|
@ -140,7 +140,7 @@ class SbyJob:
|
||||||
"yosys": "yosys",
|
"yosys": "yosys",
|
||||||
"abc": "yosys-abc",
|
"abc": "yosys-abc",
|
||||||
"smtbmc": "yosys-smtbmc",
|
"smtbmc": "yosys-smtbmc",
|
||||||
"suprove": "super_prove",
|
"suprove": "suprove",
|
||||||
"aigbmc": "aigbmc",
|
"aigbmc": "aigbmc",
|
||||||
"avy": "avy",
|
"avy": "avy",
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue