PyCaliper provides infrastructure for verifying and synthesizing specifications for RTL designs based on the Caliper specification language.
PyCaliper has been developed and tested with Python 3.11. We recommend using a virtual-environment. PyCaliper can be run without building (see [no-build] below) or by building the package (see [install] below).
- Clone this repository and the
btor2ex
package that provides a symbolic simulator forbtor2
.
git clone https://github.com/adwait/pycaliper.git
git clone https://github.com/adwait/btor2ex.git
- Install all Python packages using the
requirements.txt
, making sure to use the virtual environment. For example, usingpip
:
pip install -r requirements.txt
- Add
pycaliper
andbtor2ex
to yourPYTHONPATH
. For example, inbash
:
export PYTHONPATH=$PYTHONPATH:$(pwd)/pycaliper
export PYTHONPATH=$PYTHONPATH:$(pwd)/btor2ex
- (optional) Run tests
cd pycaliper
python3 -m tests.test
- Clone this repository and the
btor2ex
package as above:
git clone https://github.com/adwait/pycaliper.git
git clone https://github.com/adwait/btor2ex.git
- Install both packages using the
pyproject.toml
, making sure to use the virtual environment. For example, usingpip
:
cd <path to pycaliper>
pip install .
cd <path to btor2ex>
pip install .
The quickstart.py
script provides a simple example of how to use PyCaliper. It checks the design from the examples/designs/demo
directory.
It uses the PyCaliper demos
specification from the tests/specs/demo.py
file.
python quickstart.py
This examples uses the BTOR backend (using the btor2ex
package) to check the design.
PyCaliper also supports the Jasper backend.
Run the main
script (after installing PyCaliper) to see the available commands:
$ pycaliper --help
Usage: pycaliper [OPTIONS] COMMAND [ARGS]...
PyCaliper: Specification Synthesis and Verification Infrastructure.
╭─ Options ───────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ --install-completion Install completion for the current shell. │
│ --show-completion Show completion for the current shell, to copy it or customize the installation. │
│ --help Show this message and exit. │
╰─────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
╭─ Commands ──────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ persynth Synthesize invariants using Partial Equivalence Relations (PER). │
│ svagen Generate SystemVerilog Assertions (SVA) from a PyCaliper specification. │
│ verif Verify invariants in a PyCaliper specification. │
╰─────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
We provide a documentation site for PyCaliper.
The PyCaliper project welcomes external contributions through pull requests to the main branch.
We use pre-commit, so before contributing, please ensure that you run pre-commit and make sure all checks pass with
pre-commit install
pre-commit run --all-files
Please also run the provided tests and add further tests targetting newly contributed features.
We encourage feedback and suggestions via GitHub Issues.