Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Gdsfactory8 #43

Merged
merged 15 commits into from
Jun 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,12 @@ Pipfile
*.so
*.fsp
tests/gds_ref/*.oas
tests/gds_ref_si220/*.oas
tests/gds_ref_si500/*.oas
tests/gds_ref_sin300/*.oas
cspdk/si220/gds/*.oas
cspdk/si500/gds/*.oas
cspdk/sin300/gds/*.oas


tests/gds_ref/*.oas
Expand Down
10 changes: 1 addition & 9 deletions cspdk/si220/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,26 +3,18 @@
from gdsfactory.pdk import Pdk

from cspdk.si220 import cells, config, tech
from cspdk.si220.cells import _bend, _straight, _taper
from cspdk.si220.config import PATH
from cspdk.si220.models import get_models
from cspdk.si220.tech import LAYER, LAYER_STACK, LAYER_VIEWS, routing_strategies

_models = get_models()
_cells = get_cells(cells)
_cells.update(
{
"_straight": _straight,
"_bend": _bend,
"_taper": _taper,
}
)
_cross_sections = get_cross_sections(tech)
PDK = Pdk(
name="cornerstone_si220",
cells=_cells,
cross_sections=_cross_sections,
layers=dict(LAYER),
layers=LAYER,
layer_stack=LAYER_STACK,
layer_views=LAYER_VIEWS,
models=_models,
Expand Down
Loading
Loading