We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9761055 + a2e249d commit ca53359Copy full SHA for ca53359
vtr_flow/scripts/python_libs/vtr/flow.py
@@ -399,8 +399,9 @@ def delete_intermediate_files(
399
delete intermediate files
400
"""
401
next_stage_netlist.unlink()
402
- exts = (".xml", ".sdf", ".v")
403
- exts += (".net", ".place", ".route") if not keep_result_files else None
+ exts = (".xml", ".sdf", ".v", ".sv")
+ if not keep_result_files:
404
+ exts += (".net", ".place", ".route")
405
406
for file in temp_dir.iterdir():
407
if file.suffix in exts:
0 commit comments