🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more

gdsfactory

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gdsfactory

python library to generate GDS layouts

9.5.9
Maintainers
1

GDSFactory 9.5.9

docs PyPI PyPI Python Downloads MIT codecov Binder

GDSFactory is a Python library for designing chips (Photonics, Analog, Quantum, MEMS), PCBs, and 3D-printable objects. We aim to make hardware design accessible, intuitive, and fun—empowering everyone to build the future.

As input you write python code, as an output GDSFactory creates CAD files (GDS, OASIS, STL, GERBER).

cad

Quick Start

Here's a simple example to get you started:

import gdsfactory as gf

# Create a new component
c = gf.Component()

# Add a rectangle
rect = c.add_ref(gf.components.rectangle(size=(10, 10), layer=(1, 0)))

# Add text elements
text1 = c.add_ref(gf.components.text("Hello", size=10, layer=(2, 0)))
text2 = c.add_ref(gf.components.text("world", size=10, layer=(2, 0)))

# Position elements
text1.xmin = rect.xmax + 5
text2.xmin = text1.xmax + 2
text2.rotate(30)

# Show the result
c.show()

Highlights:

  • +2M downloads
  • +79 Contributors
  • +25 PDKs available

workflow

We provide a comprehensive end-to-end design flow that enables you to:

  • Design (Layout, Simulation, Optimization): Define parametric cell functions in Python to generate components. Test component settings, ports, and geometry to avoid unwanted regressions, and capture design intent in a schematic.
  • Verify (DRC, DFM, LVS): Run simulations directly from the layout using our simulation interfaces, removing the need to redraw your components in simulation tools. Conduct component and circuit simulations, study design for manufacturing. Ensure complex layouts match their design intent through Layout Versus Schematic verification (LVS) and are DRC clean.
  • Validate: Define layout and test protocols simultaneously for automated chip analysis post-fabrication. This allows you to extract essential component parameters, and build data pipelines from raw data to structured data to monitor chip performance.

Your input: Python or YAML text. Your output: A GDSII or OASIS file for fabrication, alongside component settings (for measurement and data analysis) and netlists (for circuit simulations) in YAML.

We provide a common syntax for design (Ansys, Lumerical, Tidy3d, MEEP, DEVSIM, SAX, MEOW, Xyce ...), verification, and validation.

tool interfaces

Open-Source PDKs (No NDA Required)

These PDKs are publicly available and do not require an NDA:

Foundry PDKs (NDA Required)

Access to the following PDKs requires a GDSFactory+ subscription. To sign up, visit GDSFactory.com.

Available PDKs under NDA:

  • AIM Photonics
  • AMF Photonics
  • CompoundTek Photonics
  • Fraunhofer HHI Photonics
  • Smart Photonics
  • Tower Semiconductor PH18
  • Tower PH18DA by OpenLight
  • III-V Labs
  • LioniX
  • Ligentec
  • Lightium
  • Quantum Computing Inc. (QCI)

GDSFactory+

GDSFactory+ offers Graphical User Interface for chip design, built on top of GDSFactory and VSCode. It provides you:

  • Foundry PDK access
  • Schematic capture
  • Device and circuit Simulations
  • Design verification (DRC, LVS)
  • Data analytics

Getting Started

Who is using GDSFactory?

Hundreds of organisations are using GDSFactory. Some companies and organizations around the world using GDSFactory include:

logos

"I've used GDSFactory since 2017 for all my chip tapeouts. I love that it is fast, easy to use, and easy to extend. It's the only tool that allows us to have an end-to-end chip design flow (design, verification and validation)."

Joaquin Matres - Google

"I've relied on GDSFactory for several tapeouts over the years. It's the only tool I've found that gives me the flexibility and scalability I need for a variety of projects."

Alec Hammond - Meta Reality Labs Research

"The best photonics layout tool I've used so far and it is leaps and bounds ahead of any commercial alternatives out there. Feels like GDSFactory is freeing photonics."

Hasitha Jayatilleka - LightIC Technologies

"As an academic working on large scale silicon photonics at CMOS foundries I've used GDSFactory to go from nothing to full-reticle layouts rapidly (in a few days). I particularly appreciate the full-system approach to photonics, with my layout being connected to circuit simulators which are then connected to device simulators. Moving from legacy tools such as gdspy and phidl to GDSFactory has sped up my workflow at least an order of magnitude."

Alex Sludds - MIT

"I use GDSFactory for all of my photonic tape-outs. The Python interface makes it easy to version control individual photonic components as well as entire layouts, while integrating seamlessly with KLayout and most standard photonic simulation tools, both open-source and commercial.

Thomas Dorch - Freedom Photonics

Why Use GDSFactory?

  • Fast, extensible, and easy to use – designed for efficiency and flexibility.
  • Free and open-source – no licensing fees, giving you the freedom to modify and extend it.
  • A thriving ecosystem – the most popular EDA tool with a growing community of users, developers, and integrations with other tools.
  • Built on the open-source advantage – just like the best machine learning libraries, GDSFactory benefits from continuous contributions, transparency, and innovation.

GDSFactory is really fast thanks to KLayout C++ library for manipulating GDS objects. You will notice this when reading/writing big GDS files or doing large boolean operations.

BenchmarkgdspyGDSFactoryGain
10k_rectangles80.2 ms4.87 ms16.5
boolean-offset187 μs44.7 μs4.19
bounding_box36.7 ms170 μs216
flatten465 μs8.17 μs56.9
read_gds2.68 ms94 μs28.5

Contributors

A huge thanks to all the contributors who make this project possible!

We welcome all contributions—whether you're adding new features, improving documentation, or even fixing a small typo. Every contribution helps make GDSFactory better!

Join us and be part of the community. 🚀

contributors

Stargazers

Stargazers over time

Key Features

  • Design: Create parametric components with Python
  • Simulation: Direct integration with major simulation tools
  • Verification: Built-in DRC, DFM, and LVS capabilities
  • Validation: Automated chip analysis and data pipelines
  • Multi-format Output: Generate GDSII, OASIS, STL, and GERBER files
  • Extensible: Easy to add new components and functionality

Community

Join our growing community:

FAQs

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts