File tree Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -182,6 +182,7 @@ TEST_CASE("fasm_integration_test", "[fasm]") {
182
182
};
183
183
vpr_init (sizeof (argv)/sizeof (argv[0 ]), argv,
184
184
&options, &vpr_setup, &arch);
185
+ vpr_setup.RouterOpts .read_edge_metadata = true ;
185
186
bool flow_succeeded = vpr_flow (vpr_setup, arch);
186
187
REQUIRE (flow_succeeded == true );
187
188
@@ -219,6 +220,7 @@ TEST_CASE("fasm_integration_test", "[fasm]") {
219
220
vpr_setup.PackerOpts .doPacking = STAGE_LOAD;
220
221
vpr_setup.PlacerOpts .doPlacement = STAGE_LOAD;
221
222
vpr_setup.RouterOpts .doRouting = STAGE_LOAD;
223
+ vpr_setup.RouterOpts .read_edge_metadata = true ;
222
224
vpr_setup.AnalysisOpts .doAnalysis = STAGE_SKIP;
223
225
224
226
bool flow_succeeded = vpr_flow (vpr_setup, arch);
Original file line number Diff line number Diff line change @@ -123,6 +123,7 @@ TEST_CASE("read_rr_graph_metadata", "[vpr]") {
123
123
};
124
124
vpr_init (sizeof (argv) / sizeof (argv[0 ]), argv,
125
125
&options, &vpr_setup, &arch);
126
+ vpr_setup.RouterOpts .read_edge_metadata = true ;
126
127
vpr_create_device (vpr_setup, arch);
127
128
128
129
const auto & device_ctx = g_vpr_ctx.device ();
@@ -164,6 +165,7 @@ TEST_CASE("read_rr_graph_metadata", "[vpr]") {
164
165
165
166
vpr_init (sizeof (argv) / sizeof (argv[0 ]), argv,
166
167
&options, &vpr_setup, &arch);
168
+ vpr_setup.RouterOpts .read_edge_metadata = true ;
167
169
vpr_create_device (vpr_setup, arch);
168
170
169
171
const auto & device_ctx = g_vpr_ctx.device ();
You can’t perform that action at this time.
0 commit comments