diff options
author | gatecat <gatecat@ds0.me> | 2021-05-21 09:59:19 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-21 09:59:19 +0100 |
commit | 81818fd38c5405005305d1b8354eb75beb8dc18d (patch) | |
tree | 776fbc43bd241c48505a033d3a5ab7bf367596c8 /common/router2.h | |
parent | 54b8364ceaa3be52cf5161e268cdefa96588e749 (diff) | |
parent | 1595c0726079e62313e0df82bdb31120b72bdc39 (diff) | |
download | nextpnr-81818fd38c5405005305d1b8354eb75beb8dc18d.tar.gz nextpnr-81818fd38c5405005305d1b8354eb75beb8dc18d.tar.bz2 nextpnr-81818fd38c5405005305d1b8354eb75beb8dc18d.zip |
Merge pull request #712 from YosysHQ/gatecat/rr-heatmap
router2: Add heatmap by routing resource type
Diffstat (limited to 'common/router2.h')
-rw-r--r-- | common/router2.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/common/router2.h b/common/router2.h index fb11f92d..b12e62c6 100644 --- a/common/router2.h +++ b/common/router2.h @@ -49,8 +49,10 @@ struct Router2Cfg // Print additional performance profiling information bool perf_profile = false; + + std::string heatmap; }; void router2(Context *ctx, const Router2Cfg &cfg); -NEXTPNR_NAMESPACE_END
\ No newline at end of file +NEXTPNR_NAMESPACE_END |