Skip to content

Commit

Permalink
remove redundent copy of sky130hd
Browse files Browse the repository at this point in the history
  • Loading branch information
gadfort committed Mar 8, 2024
1 parent eb7ba22 commit 4d82e2d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 166 deletions.
161 changes: 0 additions & 161 deletions lambdapdk/sky130/libs/sky130hd.py

This file was deleted.

5 changes: 2 additions & 3 deletions tests/test_lambda.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,12 @@
from lambdapdk.asap7.libs import asap7sc7p5t, fakeram7
from lambdapdk.freepdk45.libs import nangate45, fakeram45
from lambdapdk.gf180.libs import gf180mcu, gf180io, gf180sram
from lambdapdk.sky130.libs import sky130hd, sky130sc, sky130io, sky130sram
from lambdapdk.sky130.libs import sky130sc, sky130io, sky130sram


@pytest.mark.parametrize('module,path', [
(asap7sc7p5t, 'lambdapdk/asap7/libs/{lib_name}/lambda'),
(nangate45, 'lambdapdk/freepdk45/libs/{lib_name}/lambda'),
(sky130hd, 'lambdapdk/sky130/libs/{lib_name}/lambda'),
(sky130sc, 'lambdapdk/sky130/libs/{lib_name}/lambda'),
(gf180mcu, 'lambdapdk/gf180/libs/{lib_name}/lambda')
])
Expand Down Expand Up @@ -48,7 +47,7 @@ def test_la_iolib(path):
asap7sc7p5t, fakeram7,
nangate45, fakeram45,
gf180mcu, gf180io, gf180sram,
sky130hd, sky130sc, sky130io, sky130sram
sky130sc, sky130io, sky130sram
])
def test_lambdalib_is_present(module):
chip = Chip('<lib>')
Expand Down
4 changes: 2 additions & 2 deletions tests/test_paths.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from lambdapdk import asap7, freepdk45, sky130, gf180
from lambdapdk.asap7.libs import asap7sc7p5t, fakeram7
from lambdapdk.freepdk45.libs import nangate45, fakeram45
from lambdapdk.sky130.libs import sky130hd, sky130sc, sky130io, sky130sram
from lambdapdk.sky130.libs import sky130sc, sky130io, sky130sram
from lambdapdk.gf180.libs import gf180mcu, gf180io, gf180sram


Expand All @@ -18,7 +18,7 @@ def test_pdk_paths(pdk):
@pytest.mark.parametrize('lib', [
asap7sc7p5t, fakeram7, # asap7
nangate45, fakeram45, # freepdk45
sky130hd, sky130sc, sky130io, sky130sram, # sky130
sky130sc, sky130io, sky130sram, # sky130
gf180mcu, gf180io, gf180sram # gf180
])
def test_lib_paths(lib):
Expand Down

0 comments on commit 4d82e2d

Please sign in to comment.