Layout (DEPRECATED)#
DEPRECATION NOTICE: The
gf180
package is deprecated and will be removed in a future version. Please use thegf180mcu
package instead.This notebook is kept for reference only and may contain outdated information.
Please visit the gf180mcu documentation for up-to-date notebooks.
Layout driven flow using gf180mcu (recommended)#
You should import the PDK from gf180mcu and layout any of the standard cells
# Recommended approach using gf180mcu directly
import gf180mcu
# Create components using gf180mcu
c = gf180mcu.diode_dw2ps()
c.plot()

Legacy approach using gf180 (deprecated)#
While still supported for backwards compatibility, this approach is deprecated and will show warnings:
# Legacy/deprecated approach (generates deprecation warning)
import gf180 # noqa
# This still works but is redirected to gf180mcu internally
c = gf180.diode_dw2ps()
c.plot()
/tmp/ipykernel_2207/1591992778.py:2: DeprecationWarning: The gf180 package is deprecated and will be removed in a future version. Please use the gf180mcu package instead.
import gf180 # noqa
