File tree Expand file tree Collapse file tree 1 file changed +12
-0
lines changed Expand file tree Collapse file tree 1 file changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -18,6 +18,7 @@ static void ShowPlacerOpts(const t_placer_opts& PlacerOpts,
18
18
const t_annealing_sched& AnnealSched);
19
19
static void ShowRouterOpts (const t_router_opts& RouterOpts);
20
20
static void ShowAnalysisOpts (const t_analysis_opts& AnalysisOpts);
21
+ static void ShowNocOpts (const t_noc_opts& NocOpts);
21
22
22
23
static void ShowAnnealSched (const t_annealing_sched& AnnealSched);
23
24
@@ -59,6 +60,9 @@ void ShowSetup(const t_vpr_setup& vpr_setup) {
59
60
if (vpr_setup.AnalysisOpts .doAnalysis ) {
60
61
ShowAnalysisOpts (vpr_setup.AnalysisOpts );
61
62
}
63
+ if (vpr_setup.NocOpts .noc ) {
64
+ ShowNocOpts (vpr_setup.NocOpts );
65
+ }
62
66
}
63
67
64
68
void printClusteredNetlistStats () {
@@ -652,3 +656,11 @@ static void ShowPackerOpts(const t_packer_opts& PackerOpts) {
652
656
VTR_LOG (" \n " );
653
657
VTR_LOG (" \n " );
654
658
}
659
+
660
+ static void ShowNocOpts (const t_noc_opts& NocOpts)
661
+ {
662
+ // show options such as routing algorithm used
663
+ // name of the flows file
664
+ // etc...
665
+ return ;
666
+ }
You can’t perform that action at this time.
0 commit comments