A Python library for working with logic networks, synthesis, and optimization.
aigverse: A Python Library for Logic Networks, Synthesis, and Optimization
[!Important]
This project is still in the early stages of development. The API is subject to change, and some features may not be
fully implemented. I appreciate your patience and understanding as work to improve the library continues.
aigverse is an open-source infrastructure project that brings mature logic synthesis capabilities into Python-first workflows. Rather than reimplementing synthesis algorithms in Python, it wraps high-performance C/C++ backends with an idiomatic Python interface. aigverse is built directly upon the EPFL Logic Synthesis Libraries, particularly mockturtle, kitty, and lorina, providing reusable support for And-Inverter Graph (AIG) construction, manipulation, optimization and equivalence-checking flows, dataset generation, and export to graph and array representations for downstream data science and ML pipelines.
β¨ Features
- Efficient Logic Representation: Use And-Inverter Graphs (AIGs) to model and manipulate logic circuits in Python.
- File Format Support: Read and write AIGER, Verilog, Bench, PLA, ... files for interoperability with other logic
- C++ Backend: Leverage the performance of the EPFL Logic Synthesis Libraries for fast logic synthesis and
- High-Level API: Simplify logic synthesis tasks with a Pythonic interface for AIG manipulation and optimization.
- ML/Data Science Interoperability: Optional adapters for graph and array representations used in Python data
- Benchmark Suites: On-demand access to standard benchmark circuits (e.g., the EPFL suite), downloaded once and
- ABC Integration: Optionally run ABC optimization scripts such as
resyn2
compress2rs on your networks, driving an ABC executable you already have installed. No ABC is bundled.
π€ Motivation
Logic synthesis algorithms are predominantly implemented in highly optimized C/C++ toolchains, while modern ML experimentation is often Python-first. Without reusable infrastructure, projects frequently end up reimplementing synthesis functionality in Python or maintaining brittle wrapper and file-conversion pipelines around external tools. aigverse addresses this recurring engineering gap by exposing mature synthesis capabilities through a streamlined Python API. This enables circuit construction and manipulation, optimization and equivalence-checking flows, and export to ML-ready graph or numeric representations in one reusable library. aigverse wraps the EPFL Logic Synthesis Libraries with nanobind to provide a Pythonic interface to high-performance C/C++ synthesis backends.
π¦ Installation
aigverse is available via PyPI for all major operating systems and supports all active Python versions, with Stable ABI for 3.12+ and free-threading support for 3.14+.
pip install aigverse
π Adapters
To keep the core library lightweight, ML and data science adapters are optional and not installed by default. They provide reusable conversion paths from AIGs to graph and array formats for Python workflows (such as NetworkX and NumPy). To install aigverse with the adapters extra, use:
pip install "aigverse[adapters]"
This will install additional dependencies required for ML workflows. See the documentation for more details.
π Usage
The following demonstrates core workflows in aigverse. Detailed documentation and examples are available at ReadTheDocs.
ποΈ Basic Example: Creating an AIG
In aigverse, you can create a simple And-Inverter Graph (AIG) and manipulate it using various logic operations.
from aigverse.networks import Aig
Create a new AIG network
aig = Aig()
Create primary inputs
x1 = aig.create_pi()
x2 = aig.create_pi()
Create logic gates
fand = aig.createand(x1, x2) # AND gate
for = aig.createor(x1, x2) # OR gate
Create primary outputs
aig.createpo(fand)
aig.createpo(for)
Print the size of the AIG network
print(f"AIG Size: {aig.size}")
Note that all primary inputs (PIs) must be created before any logic gates.
π Iterating over AIG Nodes
You can iterate over all nodes in the AIG, or specific subsets like the primary inputs or only logic nodes (gates).
# Iterate over all nodes in the AIG
for node in aig.nodes():
print(f"Node: {node}")
Iterate only over primary inputs
for pi in aig.pis():
print(f"Primary Input: {pi}")
Iterate only over logic nodes (gates)
for gate in aig.gates():
print(f"Gate: {gate}")
Iterate over the fanins of a node
nand = aig.getnode(f_and)
for fanin in aig.fanins(n_and):
print(f"Fanin of {n_and}: {fanin}")
π·οΈ Network and Signal Names
Named AIGs allow you to assign human-readable names to the network, inputs, outputs, and internal signals.
from aigverse.networks import NamedAig
Create a named AIG
named_aig = NamedAig()
namedaig.setnetworkname("fulladder")
Create named primary inputs and logic
a = namedaig.createpi("a")
b = namedaig.createpi("b")
cin = namedaig.createpi("cin")
sum = namedaig.createxor3(a, b, cin) carry = namedaig.createmaj(a, b, cin)
Assign names to signals and create named outputs
namedaig.setname(sum, "sum")
namedaig.createpo(carry, "carry_output")
Retrieve names
print(f"Network: {namedaig.getnetwork_name()}")
print(f"Signal: {namedaig.getname(sum)}")
Named AIGs are automatically created when reading Verilog or AIGER files with naming information.
π Depth and Level Computation
You can compute the depth of the AIG network and the level of each node. Depth information is useful for estimating the critical path delay of a respective circuit.
from aigverse.networks import DepthAig
depth_aig = DepthAig(aig) print(f"Depth: {depthaig.numlevels}") for node in aig.nodes(): print(f"Level of {node}: {depth_aig.level(node)}")
πΈοΈ AIGs with Fanout Information
If needed, you can retrieve the fanouts of AIG nodes as well:
from aigverse.networks import FanoutAig
fanout_aig = FanoutAig(aig) nand = aig.getnode(f_and)
Iterate over the fanouts of a node
for fanout in fanoutaig.fanouts(nand): print(f"Fanout of node {n_and}: {fanout}")
π Sequential AIGs
aigverse also supports sequential AIGs, which are AIGs with registers.
from aigverse.networks import SequentialAig
seq_aig = SequentialAig() x1 = seqaig.createpi() # Regular PI x2 = seqaig.createro() # Register output (sequential PI)
fand = seqaig.create_and(x1, x2) # AND gate
seqaig.createri(f_and) # Register input (sequential PO)
print(seq_aig.registers()) # Prints the association of registers
It is to be noted that the construction of sequential AIGs comes with some caveats:
- All register outputs (ROs) must be created after all primary inputs (PIs).
- All register inputs (RIs) must be created after all primary outputs (POs).
- As for regular AIGs, all PIs and ROs must be created before any logic gates.
β‘ Logic Optimization
You can optimize AIGs using various algorithms. For example, you can perform resubstitution to simplify logic using shared divisors. Similarly, refactoring collapses maximal fanout-free cones (MFFCs) into truth tables and resynthesizes them into new structures. Cut rewriting optimizes the AIG by replacing cuts with improved ones from a pre-computed NPN database. Finally, balancing performs (E)SOP factoring to minimize the number of levels in the AIG.
from aigverse.algorithms import (
aig_resubstitution,
sop_refactoring,
aigcutrewriting,
balancing,
cleanup_dangling,
)
Clone the AIG network for size comparison
aig_clone = aig.clone()
Optimize the AIG with several optimization algorithms.
By default, each algorithm returns a new cleaned AIG.
aig_opt = aig
for optimization in [aigresubstitution, soprefactoring, aigcutrewriting, balancing]:
aigopt = optimization(aigopt)
Print the size of the unoptimized and optimized AIGs
print(f"Original AIG Size: {aig_clone.size}")
print(f"Optimized AIG Size: {aig_opt.size}")
Some algorithms offer in-place transformations for performance-oriented pipelines
for optimization in [aigresubstitution, soprefactoring]:
optimization(aig, inplace=True)
aig = cleanup_dangling(aig)
π² Random AIG Generation
The aigverse.generators module provides reproducible random AIG generation via random_aig.
from aigverse.generators import random_aig
One random AIG
aig = randomaig(numpis=4, num_gates=20, seed=123)
Python-side batch generation
dataset = [randomaig(numpis=4, num_gates=20, seed=1000 + i) for i in range(16)]
π§± Structured Generator Networks
The same module also provides high-level arithmetic and control generators that return complete benchmark networks.
from aigverse.generators import binarydecoder, ripplecarry_adder, multiplexer
adder = ripplecarryadder(8) mux = multiplexer(8) decoder = binary_decoder(8)
print(adder.numpis, adder.numpos, adder.num_gates) print(mux.numpis, mux.numpos, mux.num_gates) print(decoder.numpis, decoder.numpos, decoder.num_gates)
π Benchmark Loading
The aigverse.benchmarks module fetches standard benchmark suites on demand and caches them locally, so a script can name a benchmark instead of carrying a downloader and a checked-in copy of the data. The EPFL combinational suite is supported out of the box.
from aigverse.benchmarks import epfl, epfl_names
List the benchmark names in a category
print(epfl_names("arithmetic")) # ('adder', 'bar', 'div', ...)
Downloads once and caches thereafter, returned as a NamedAig
aig = epfl("ctrl")
print(f"{aig.numpis} inputs, {aig.numpos} outputs, {aig.num_gates} AND gates")
For more details, including cache configuration and revision pinning, see the benchmarks documentation.
β Equivalence Checking
Equivalence of AIGs (e.g., after optimization) can be checked using SAT-based equivalence checking.
from aigverse.algorithms import equivalence_checking
Perform equivalence checking
equiv = equivalence_checking(aig1, aig2)
if equiv: print("AIGs are equivalent!") else: print("AIGs are NOT equivalent!")
π File Format Support
You can read and write AIGs in various file formats, including (ASCII) AIGER, gate-level Verilog and PLA.
βοΈ Writing
from aigverse.io import writeaiger, writeverilog, write_dot
Write an AIG network to an AIGER file
write_aiger(aig, "example.aig")
Write an AIG network to a Verilog file
write_verilog(aig, "example.v")
Write an AIG network to a DOT file
write_dot(aig, "example.dot")
π Parsing
from aigverse.io import (
readaigerinto_aig,
readasciiaigerintoaig,
readveriloginto_aig,
readplainto_aig,
)
Read AIGER files into AIG networks
aig1 = readaigerinto_aig("example.aig")
aig2 = readasciiaigerintoaig("example.aag")
Read a Verilog file into an AIG network
aig3 = readveriloginto_aig("example.v")
Read a PLA file into an AIG network
aig4 = readplainto_aig("example.pla")
Additionally, you can read AIGER files into sequential AIGs using readaigerintosequentialaig and readasciiaigerintosequential_aig.
π₯ pickle Support
AIGs support Python's pickle protocol, allowing you to serialize and deserialize AIG objects for persistent storage or interface with data science or machine learning workflows.
import pickle
with open("aig.pkl", "wb") as f: pickle.dump(aig, f)
with open("aig.pkl", "rb") as f: unpickled_aig = pickle.load(f)
You can also pickle multiple AIGs at once by storing them in a tuple or list.
π§ Machine Learning Integration
With the adapters extra, you can convert an AIG to a NetworkX directed graph, enabling visualization and use with graph-based ML tools:
import aigverse.adapters
G = aig.tonetworkx(levels=True, fanouts=True, nodetts=True)
Graph, node, and edge attributes provide logic, level, fanout, and function information for downstream ML or visualization tasks.
For more details and examples, see the machine learning integration documentation.
π’ Truth Tables
Small Boolean functions can be efficiently represented using truth tables. aigverse enables the creation and manipulation of truth tables by wrapping a portion of the kitty library.
π Creation
from aigverse.utils import TruthTable
Initialize a truth table with 3 variables
tt = TruthTable(3)
Create a truth table from a hex string representing the MAJ function
tt.createfromhex_string("e8")
π§ Manipulation
# Flip each bit in the truth table
for i in range(tt.num_bits()):
print(f"Flipping bit {int(tt.get_bit(i))}")
tt.flip_bit(i)
Print a binary string representation of the truth table
print(tt.to_binary())
Clear the truth table
tt.clear()
Check if the truth table is constant 0
print(tt.is_const0())
π£ Symbolic Simulation of AIGs
from aigverse.algorithms import simulate, simulate_nodes
Obtain the truth table of each AIG output
tts = simulate(aig)
Print the truth tables
for i, tt in enumerate(tts):
print(f"PO{i}: {tt.to_binary()}")
Obtain the truth tables of each node in the AIG
ntott = simulate_nodes(aig)
Print the truth tables of each node
for node, tt in ntott.items():
print(f"Node {node}: {tt.to_binary()}")
π Exporting as Lists or NumPy Arrays
For machine learning applications, it is often useful to convert truth tables into standard data structures like Python lists or NumPy arrays. Since TruthTable objects are iterable, conversion is straightforward.
import numpy as np
Export to a list
tt_list = list(tt)
Export to NumPy arrays
ttnpbool = np.array(tt)
ttnpint = np.array(tt, dtype=np.int32)
ttnpfloat = np.array(tt, dtype=np.float64)
π₯ pickle Support
Truth tables also support Python's pickle protocol, allowing you to serialize and deserialize them.
import pickle
with open("tt.pkl", "wb") as f: pickle.dump(tt, f)
with open("tt.pkl", "rb") as f: unpickled_tt = pickle.load(f)
π€ Learn More
For a deeper dive into the vision and technical details behind aigverse, check out the presentation from the Free Silicon Conference (FSiC) 2025:
"aigverse: Toward machine learning-driven logic synthesis" π Slides available on the FSiC wiki
This talk presents the same core infrastructure thesis: closing the software gap between high-performance synthesis tooling and Python-first ML workflows.
π Contributing
Contributions are welcome! If you'd like to contribute to aigverse, please see the contribution guide. I appreciate feedback and suggestions for improving the library.
πΌ Support and Consulting
aigverse is and will always be a free, open-source library. If you or your organization require dedicated support, specific new features, or integration of aigverse into your projects, professional consulting services are available. This is a great way to get the features you need while also supporting the ongoing maintenance and development of the library.
For inquiries, please reach out to @marcelwa. More information can be found in the documentation.
π License
aigverse is available under the MIT License.