mirror of https://github.com/VLSIDA/OpenRAM.git
Change priority of debug info for DRC/LVS.
This commit is contained in:
parent
322f354878
commit
7a14cf16e0
|
|
@ -103,7 +103,7 @@ def run_drc(cell_name, gds_name):
|
||||||
OPTS.openram_temp,
|
OPTS.openram_temp,
|
||||||
errfile,
|
errfile,
|
||||||
outfile)
|
outfile)
|
||||||
debug.info(1, cmd)
|
debug.info(2, cmd)
|
||||||
os.system(cmd)
|
os.system(cmd)
|
||||||
os.chdir(cwd)
|
os.chdir(cwd)
|
||||||
|
|
||||||
|
|
@ -191,7 +191,7 @@ def run_lvs(cell_name, gds_name, sp_name, final_verification=False):
|
||||||
OPTS.openram_temp,
|
OPTS.openram_temp,
|
||||||
errfile,
|
errfile,
|
||||||
outfile)
|
outfile)
|
||||||
debug.info(1, cmd)
|
debug.info(2, cmd)
|
||||||
os.system(cmd)
|
os.system(cmd)
|
||||||
os.chdir(cwd)
|
os.chdir(cwd)
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -152,7 +152,7 @@ def run_drc(cell_name, gds_name, extract=False):
|
||||||
cmd = "{0}run_drc.sh 2> {1} 1> {2}".format(OPTS.openram_temp,
|
cmd = "{0}run_drc.sh 2> {1} 1> {2}".format(OPTS.openram_temp,
|
||||||
errfile,
|
errfile,
|
||||||
outfile)
|
outfile)
|
||||||
debug.info(1, cmd)
|
debug.info(2, cmd)
|
||||||
os.system(cmd)
|
os.system(cmd)
|
||||||
os.chdir(cwd)
|
os.chdir(cwd)
|
||||||
|
|
||||||
|
|
@ -204,7 +204,7 @@ def run_lvs(cell_name, gds_name, sp_name, final_verification=False):
|
||||||
cmd = "{0}run_lvs.sh lvs 2> {1} 1> {2}".format(OPTS.openram_temp,
|
cmd = "{0}run_lvs.sh lvs 2> {1} 1> {2}".format(OPTS.openram_temp,
|
||||||
errfile,
|
errfile,
|
||||||
outfile)
|
outfile)
|
||||||
debug.info(1, cmd)
|
debug.info(2, cmd)
|
||||||
os.system(cmd)
|
os.system(cmd)
|
||||||
os.chdir(cwd)
|
os.chdir(cwd)
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue