@@ -189,7 +189,7 @@ TEST_CASE("test_initial_noc_placement", "[noc_place_utils]") {
189
189
}
190
190
191
191
// now call the test function
192
- initial_noc_routing ();
192
+ initial_noc_routing ({} );
193
193
194
194
// now verify the function by comparing the link bandwidths in the noc model (should have been updated by the test function) to the golden set
195
195
int number_of_links = golden_link_bandwidths.size ();
@@ -379,7 +379,7 @@ TEST_CASE("test_initial_comp_cost_functions", "[noc_place_utils]") {
379
379
380
380
// assume this works
381
381
// this is needed to set up the global noc packet router and also global datastructures
382
- initial_noc_routing ();
382
+ initial_noc_routing ({} );
383
383
384
384
SECTION (" test_comp_noc_aggregate_bandwidth_cost" ) {
385
385
// initialize all the cost calculator datastructures
@@ -664,7 +664,7 @@ TEST_CASE("test_find_affected_noc_routers_and_update_noc_costs, test_commit_noc_
664
664
665
665
// assume this works
666
666
// this is needed to set up the global noc packet router and also global datastructures
667
- initial_noc_routing ();
667
+ initial_noc_routing ({} );
668
668
669
669
// datastructure below will store the bandwidth usages of all the links
670
670
// and will be updated throughout this test.
@@ -1523,7 +1523,7 @@ TEST_CASE("test_revert_noc_traffic_flow_routes", "[noc_place_utils]") {
1523
1523
1524
1524
// assume this works
1525
1525
// this is needed to set up the global noc packet router and also global datastructures
1526
- initial_noc_routing ();
1526
+ initial_noc_routing ({} );
1527
1527
1528
1528
// datastructure below will store the bandwidth usages of all the links
1529
1529
// and will be updated throughout this test.
0 commit comments