marcelwa
aigverse
Python

A Python library for working with logic networks, synthesis, and optimization.

Last updated Aug 9, 2026
88
Stars
6
Forks
16
Issues
0
Stars/day
Attention Score
66
Language breakdown
Python 69.6%
C++ 26.7%
CMake 3.6%
Verilog 0.0%
β–Έ Files click to expand
README

aigverse: A Python Library for Logic Networks, Synthesis, and Optimization

CI Documentation PyPI Python License Release

[!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 logo

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.

Documentation

✨ 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
synthesis tools.
  • C++ Backend: Leverage the performance of the EPFL Logic Synthesis Libraries for fast logic synthesis and
optimization.
  • 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
science and machine learning workflows.
  • Benchmark Suites: On-demand access to standard benchmark circuits (e.g., the EPFL suite), downloaded once and
cached locally.
  • ABC Integration: Optionally run ABC optimization scripts such as resyn2
or 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.

Β© 2026 GitRepoTrend Β· marcelwa/aigverse Β· Updated daily from GitHub