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 a3d9784 commit f9673e9Copy full SHA for f9673e9
vpr/src/route/route.cpp
@@ -582,6 +582,8 @@ bool route(const Netlist<>& net_list,
582
// profiling::time_on_criticality_analysis();
583
}
584
585
+ // Calculates the number of iterations with high heap ops.
586
+ // This is defined as an iteration that has more heap operations than the maximum of the previous three iterations.
587
int num_high_heap_ops_iters = 0;
588
if (per_iter_heap_ops_count.size() > 4) {
589
for (int i = 3; i < static_cast<int>(per_iter_heap_ops_count.size()); i++) {
0 commit comments