From dc9ae6cd1a3b060a439497ec68fbcad6f589ca0f Mon Sep 17 00:00:00 2001 From: mrg Date: Thu, 16 Jun 2022 10:30:58 -0700 Subject: [PATCH] Increase column width in netgen LVS scripts --- compiler/verify/magic.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/compiler/verify/magic.py b/compiler/verify/magic.py index 0b3a8c26..2b5727ed 100644 --- a/compiler/verify/magic.py +++ b/compiler/verify/magic.py @@ -267,6 +267,11 @@ def write_lvs_script(cell_name, gds_name, sp_name, final_verification=False, out if os.path.exists(full_setup_file): # Copy setup.tcl file into temp dir shutil.copy(full_setup_file, output_path) + + setup_file_object = open(output_path + "/setup.tcl", 'a') + setup_file_object.write("# Increase the column sizes for ease of reading long names\n") + setup_file_object.write("::netgen::format 80\n") + else: setup_file = 'nosetup'