Ordering bug fixed in Magic.

This commit is contained in:
mrg 2021-01-12 16:20:26 -08:00
parent 6f5b7c0264
commit 408ea15228
1 changed files with 2 additions and 2 deletions

View File

@ -91,8 +91,8 @@ def write_drc_script(cell_name, gds_name, extract, final_verification, output_pa
# These two options are temporarily disabled until Tim fixes a bug in magic related
# to flattening channel routes and vias (hierarchy with no devices in it). Otherwise,
# they appear to be disconnected.
f.write("#gds flatten true\n")
f.write("#gds ordering true\n")
f.write("gds flatten true\n")
f.write("gds ordering true\n")
f.write("gds readonly true\n")
f.write("gds read {}\n".format(gds_name))
f.write('puts "Finished reading gds {}"\n'.format(gds_name))