Skip to content

Commit

Permalink
Merge pull request #53 from siliconcompiler/fix-signoff
Browse files Browse the repository at this point in the history
fix calls to signoff
  • Loading branch information
gadfort authored Oct 24, 2024
2 parents 1fc021c + 6845fba commit 8878553
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions make.py
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ def build_core(verify=True, remote=False, resume=False, floorplan=False):
_run_build(chip, remote)

if verify:
_run_signoff(chip, 'dfm', 'export')
_run_signoff(chip, 'write_data', 'write_gds', remote)

_setup_core_module(chip)

Expand Down Expand Up @@ -241,7 +241,7 @@ def build_top_flat(verify=True, resume=False, remote=False, floorplan=False):

_run_build(chip, remote)
if verify:
_run_signoff(chip, 'syn', 'export')
_run_signoff(chip, 'write_data', 'write_gds', remote)

return chip

Expand All @@ -254,7 +254,7 @@ def build_top(core_chip=None, verify=True, resume=False, remote=False, floorplan

_run_build(chip, remote)
if verify:
_run_signoff(chip, 'syn', 'export')
_run_signoff(chip, 'write_data', 'write_gds', remote)

return chip

Expand All @@ -267,7 +267,7 @@ def _run_build(chip, remote):
chip.summary()


def _run_signoff(chip, netlist_step, layout_step):
def _run_signoff(chip, netlist_step, layout_step, remote):
gds_path = chip.find_result('gds', step=layout_step)
netlist_path = chip.find_result('vg', step=netlist_step)

Expand All @@ -282,7 +282,7 @@ def _run_signoff(chip, netlist_step, layout_step):
chip.input(gds_path)
chip.input(netlist_path)

_run_build(chip)
_run_build(chip, remote)


def _main():
Expand Down

0 comments on commit 8878553

Please sign in to comment.