Skip to content

Commit f6ded92

Browse files
authored
Merge pull request #2855 from verilog-to-routing/rrgraph_switch_warning
convert switch id check with architecture to warning instead of error
2 parents d7e62db + 6b80092 commit f6ded92

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libs/librrgraph/src/io/rr_graph_uxsdcxx_serializer.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -534,7 +534,7 @@ class RrGraphSerializer final : public uxsd::RrGraphBase<RrGraphContextTypes> {
534534
}
535535
}
536536
if (!found_arch_name) {
537-
report_error("Switch name '%s' not found in architecture\n", string_name.c_str());
537+
VTR_LOG("Switch name '%s' found in RR graph input from file but not in the architecture file; creating it.\n", string_name.c_str());
538538
}
539539
sw->intra_tile = is_internal_sw;
540540
sw->name = string_name;

0 commit comments

Comments
 (0)