lambdalib
Standardized ASIC design libraries
What it is and what it does
Lambdalib is a modular cell library for ASIC design that abstracts away technology-specific details—synchronizers, clock gating, I/O pads, memory compilers, and analog blocks—so designers can write portable RTL once and retarget it to different process nodes without redesign. It solves the problem that modern CMOS manufacturing requires different implementations for each foundry, wasting months of engineering time on reimplementation of the same functionality.
The library organizes cells into specialized domains: standard digital logic (97 cells), special-purpose circuits (22 cells), memory modules (6), I/O pads (16), padring generation (3), vectorized datapaths (15), FPGA primitives (3), and analog circuits (2). Each cell is a Python class wrapping Verilog, designed to integrate natively with siliconcompiler's build flow. Designers instantiate cells in RTL using the `la_` prefix, then add them as dependencies to their design; the library handles technology mapping through Lambdapdk for supported processes.
Use it for:
- Porting an ASIC design from one foundry process to another without rewriting synchronizers, memory compilers, or I/O pad logic.
- Building a multi-project chip that must support multiple process nodes with a single RTL codebase.
- Rapid prototyping of digital designs using standardized, proven cells instead of writing custom implementations.
- Integrating memory, padring, and clock-domain-crossing logic into a larger design without technology-specific customization.
- Teaching ASIC design methodology with portable, process-independent cell abstractions.
Worth the install?
AI-flagged interpretation of the facts on this page — verify before relying
Lambdalib provides technology-agnostic hardware abstraction for ASIC design, allowing designers to write RTL once and target multiple foundry processes through a library of standardized cells that decouple design from manufacturing specifics.
Yes, if you are designing ASICs with siliconcompiler and targeting multiple foundry processes or need portable, standardized cell abstractions. The library is actively maintained, MIT-licensed, and proven in production tapeouts. Install it if you want to decouple your RTL from process-specific details; skip it if you are working with a single fixed foundry or using a different ASIC flow entirely.
Install
lambdalib on PyPI
pip
pip install lambdalibuv
uv add lambdalibpoetry
poetry add lambdalibInstalling lambdalib
Before you install
Low friction installation as a pure Python wheel. Actively maintained with recent releases; last commit 2026-08-03. Depends on siliconcompiler and Jinja2, both standard tools in the ASIC design ecosystem.
License in practice
MIT licensed (permissive). Free to use, modify, and integrate into proprietary designs without restriction.
Quickstart
pip install lambdalib
from siliconcompiler import Design
from lambdalib.stdlib import Inv, Dffq
from lambdalib.ramlib import Dpram
class MyChip(Design):
def __init__(self):
super().__init__('mychip')
self.add_depfileset(Inv(), depfileset='rtl', fileset='rtl')
self.add_depfileset(Dffq(), depfileset='rtl', fileset='rtl')
Requires Python >=3.9. Designed for use within siliconcompiler workflows; standalone RTL simulation requires external Verilog tools (iverilog, yosys).
Verify before relying
- Completeness of cell coverage across all supported foundry technologies (ASAP7, FreePDK45, IHP130, Skywater130, GF180MCU).
- Performance and area characteristics of generated cells relative to foundry-native implementations.
- Compatibility with production signoff flows beyond RTL simulation mentioned in the disclaimer.
Package facts
| License | MIT (permissive) |
| Python support | supports the current Python release (>=3.9) |
| Install friction | low — pure-Python wheel |
| Runtime dependencies | 2 — siliconcompiler, Jinja2 |
| Maintenance | actively maintained — 37 days since the last release |
| Last repo commit | |
| First released | |
| Downloads | 77,060/month — #14,555 on PyPI (30-day window, as of 2026-08-14) |
| Known vulnerabilities | none known (OSV.dev, checked 2026-08-14) |
Evidence: lambdalib-0.13.1-py3-none-any.whl
Tags
More Build Tools packages
Provides reusable utilities for Python…
permissive · top 100 on PyPI
tqdmWraps any iterable to display a real-time…
copyleft · top 100 on PyPI
pippip is the standard installer for Python…
permissive · top 100 on PyPI
hatchlingHatchling is a standards-compliant Python build…
permissive · top 100 on PyPI
grpcio-toolsGenerates Python gRPC service stubs and message…
permissive · top 1,000 on PyPI
pre-commitpre-commit is a framework for installing and…
permissive · top 1,000 on PyPI
lambdapdkLambdapdk provides pre-configured, open-source…
permissive · top 5,000 on PyPI
siliconcompilerSiliconCompiler is a modular hardware build…
permissive · top 15,000 on PyPI
peakrdl-regblockCompiles SystemRDL register descriptions into…
copyleft · top 15,000 on PyPI
amaranthAmaranth is a Python-based hardware definition…
permissive · top 15,000 on PyPI
systemrdl-compilerParses and elaborates SystemRDL 2.0 register…
permissive · top 15,000 on PyPI
libProvides zero-dependency Python bindings to…
permissive · top 15,000 on PyPI
pyuvmImplements the IEEE 1800.2 Universal…
permissive · top 15,000 on PyPI
kfactoryKFactory is a Python framework for designing…
unclear · top 15,000 on PyPI
salamandraSalamandra is a Python framework for loading,…
permissive · top 15,000 on PyPI
cocotbcocotb is a Python framework for writing…
permissive · top 15,000 on PyPI