Remove extra debug statement

This commit is contained in:
mrg 2020-12-08 11:59:14 -08:00
parent 41d6cb639d
commit 9717794400
3 changed files with 3 additions and 3 deletions

View File

@ -27,8 +27,8 @@ class bitcell_array_1rw_1r_test(openram_test):
OPTS.num_w_ports = 0
globals.setup_bitcell()
debug.info(2, "Testing 4x4 array for cell_1rw_1r")
a = factory.create(module_type="bitcell_array", cols=4, rows=4)
debug.info(2, "Testing 2x2 array for cell_2port")
a = factory.create(module_type="bitcell_array", cols=2, rows=2)
self.local_check(a)
globals.end_openram()

View File

@ -23,6 +23,7 @@ class sram_1bank_2mux_1rw_1r_test(openram_test):
globals.init_openram(config_file)
from sram_config import sram_config
OPTS.route_supplies = False
OPTS.num_rw_ports = 1
OPTS.num_r_ports = 1
OPTS.num_w_ports = 0

View File

@ -153,7 +153,6 @@ def write_drc_script(cell_name, gds_name, extract, final_verification, output_pa
from tech import blackbox_cells
except ImportError:
blackbox_cells = []
import pdb; pdb.set_trace()
for cell_name in blackbox_cells:
mag_file = OPTS.openram_tech + "maglef_lib/" + cell_name + ".mag"
debug.check(os.path.isfile(mag_file), "Could not find blackbox cell {}".format(mag_file))