Skip to content

Commit

Permalink
Merge pull request #43 from gdsfactory/gdsfactory8
Browse files Browse the repository at this point in the history
Gdsfactory8
  • Loading branch information
joamatab authored Jun 14, 2024
2 parents b9ee030 + 1542313 commit 88c97f9
Show file tree
Hide file tree
Showing 416 changed files with 27,845 additions and 24,575 deletions.
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

0 comments on commit 88c97f9

Please sign in to comment.