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.
1 parent dec9fe9 commit cc22f54Copy full SHA for cc22f54
vtr_flow/scripts/run_vtr_flow.pl
@@ -363,7 +363,7 @@
363
364
# Read arch XML
365
my $tpp = XML::TreePP->new();
366
-my $xml_tree = $tpp->parsefile("$architecture_file_path");
+my $xml_tree = $tpp->parsefile($architecture_file_path);
367
368
# Get lut size if undefined
369
if (!defined $lut_size) {
@@ -417,6 +417,8 @@
417
418
my $architecture_file_path_new = "$temp_dir$architecture_file_name";
419
my $ret = `$vtr_flow_path/scripts/add_tiles.py --arch_xml $architecture_file_path > $architecture_file_path_new`;
420
+
421
+# There is no need to copy the arch decription file as it is produced by the add_tiles.py script
422
#copy( "$architecture_file_path", $architecture_file_path_new );
423
$architecture_file_path = $architecture_file_path_new;
424
0 commit comments