Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
gadfort committed Sep 20, 2024
1 parent bc376cf commit 3ff7cca
Showing 1 changed file with 4 additions and 11 deletions.
15 changes: 4 additions & 11 deletions scgallery/gallery.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,9 @@
from siliconcompiler.tools._common.asic import get_mainlib
from siliconcompiler.flowgraph import nodes_to_execute

<<<<<<< HEAD
from scgallery.targets.freepdk45 import (
nangate45 as freepdk45_nangate45
)
=======
from scgallery.targets import \
ihp130_demo

>>>>>>> 35430b3 (add ihp130 enablement)
from scgallery.targets.asap7 import (
asap7sc7p5t_rvt as asap7_asap7sc7p5t_rvt,
asap7sc7p5t_lvt as asap7_asap7sc7p5t_lvt,
Expand All @@ -38,6 +32,9 @@
gf180mcu_fd_sc_mcu7t5v0 as gf180_gf180mcu_fd_sc_mcu7t5v0,
gf180mcu_fd_sc_mcu9t5v0 as gf180_gf180mcu_fd_sc_mcu9t5v0
)
from scgallery.targets.ihp130 import (
sg13g2_stdcell as ihp130_sg13g2_stdcell
)
from scgallery.targets import linting as gallery_lint
from siliconcompiler.flows import lintflow

Expand All @@ -62,14 +59,10 @@ def __init__(self, name=None, path=None):
("asap7_asap7sc7p5t_rvt", asap7_asap7sc7p5t_rvt),
("asap7_asap7sc7p5t_lvt", asap7_asap7sc7p5t_lvt),
("asap7_asap7sc7p5t_slvt", asap7_asap7sc7p5t_slvt),
<<<<<<< HEAD
("gf180_gf180mcu_fd_sc_mcu9t5v0", gf180_gf180mcu_fd_sc_mcu9t5v0),
("gf180_gf180mcu_fd_sc_mcu7t5v0", gf180_gf180mcu_fd_sc_mcu7t5v0),
("ihp130_sg13g2_stdcell", ihp130_sg13g2_stdcell),
("None", None)):
=======
("gf180_gf180mcu_fd_sc_mcu7t5v0", gf180_gf180mcu_fd_sc_mcu7t5v0),
("ihp130_demo", ihp130_demo)):
>>>>>>> 35430b3 (add ihp130 enablement)
self.add_target(name, target)

self.__designs = {}
Expand Down

0 comments on commit 3ff7cca

Please sign in to comment.