Skip to content

Commit

Permalink
increase the number of iteration in initial noc palcement
Browse files Browse the repository at this point in the history
  • Loading branch information
soheilshahrouz committed Mar 5, 2024
1 parent 75bb145 commit 77ce5f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vpr/src/place/initial_noc_placement.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ static void noc_routers_anneal(const t_noc_opts& noc_opts) {
// the constant factor above 35000.
// Get all the router clusters and figure out how many of them exist
const int num_router_clusters = noc_ctx.noc_traffic_flows_storage.get_router_clusters_in_netlist().size();
const int N_MOVES_PER_ROUTER = 35000;
const int N_MOVES_PER_ROUTER = 50000;
const int N_MOVES = num_router_clusters * N_MOVES_PER_ROUTER;

const double starting_prob = 0.5;
Expand Down

0 comments on commit 77ce5f5

Please sign in to comment.