|
|
3 weeks ago | |
|---|---|---|
| kyupy@449bf9a031 | 3 weeks ago | |
| src/fsim | 3 weeks ago | |
| tests | 3 weeks ago | |
| .gitignore | 3 weeks ago | |
| .gitmodules | 3 weeks ago | |
| .python-version | 3 weeks ago | |
| README.md | 3 weeks ago | |
| flake.lock | 3 weeks ago | |
| flake.nix | 3 weeks ago | |
| main.py | 3 weeks ago | |
| pyproject.toml | 3 weeks ago | |
| uv.lock | 3 weeks ago | |
README.md
Fault Simulation
PPSFP (Parallel-Pattern Single-Fault Propagation) style fault simulators and other utility functions for use in various projects. These fault simulators are meant to be correct (ensured by unit-tests) and reasonably fast.
Fault simulation has $O(n^3)$ complexity. Every fault is simulated with every pattern involving every combinational gate in the circuit. We measure performance in terms of gates * faults * patterns / second. How fast can we make it?
Quick Start
This project has submodules. To ensure everything is up-to-date, run
git submodule update --init --recursive
after git clone, git pull or git checkout.
This project manages reproducible programming environments with:
- uv for managing python environments.
- nix for managing non-python tools and benchmark designs. Follow this guide or this guide to setup nix-eda binary cache to avoid re-building EDA-related tools.
Run all unit-tests: uv run pytest
Run a naive, baseline fault simulation with 1024 random patterns: uv run main.py tests/c6288.bench
Same on an 18k-gate circuit: uv run main.py polito-itc99-b15-sky130
nix develop makes quaigh available, another simulator/atpg written in rust.
To run Jupyter Notebooks in the reproducible programming environment, install a kernelspec:
uv run ipython kernel install --user --env VIRTUAL_ENV $(pwd)/.venv --env PATH ${PATH} --name=uv-env
Run a Jupyter Lab server locally:
uv run jupyter lab
Choose uv-env as kernel in Jupyter Lab.