vtr-verilog-to-routing icon indicating copy to clipboard operation
vtr-verilog-to-routing copied to clipboard

[Logging] Overly Verbose Log Messages When Building RRGraph

Open AlexandreSinger opened this issue 6 months ago • 0 comments

The logs produced by VPR when building the RRGraph include information on the different types of edge counts. This is a bit verbose, and most users would not need this information: image

The number of nodes and edges in the RRGraph itself should remain, since this information is general enough.

These log messages are printed here: https://github.com/verilog-to-routing/vtr-verilog-to-routing/blob/21d015036969a955298cbc9b94ca74fd35a016be/vpr/src/route/rr_graph.cpp#L1975-L2179

Instead of VTR_LOG, they should use VTR_LOGV; however, this may require some work since a "verbosity" variable will need to be passed into this method somehow.

AlexandreSinger avatar Aug 15 '24 14:08 AlexandreSinger