Skip to content

Commit 5b0ff1e

Browse files
committed
vpr: Report geomean CPD even for single clock circuits
1 parent 6428b63 commit 5b0ff1e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

vpr/src/timing/timing_util.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ void print_setup_timing_summary(const tatum::TimingConstraints& constraints, con
265265
}
266266

267267
//Calculate the intra-domain (i.e. same launch and capture domain) non-virtual geomean, and fanout-weighted periods
268-
if (crit_paths.size() > 1) {
268+
if (crit_paths.size() >= 1) {
269269
std::vector<double> intra_domain_cpds;
270270
std::vector<double> fanout_weighted_intra_domain_cpds;
271271
double total_intra_domain_fanout = 0.;

0 commit comments

Comments
 (0)