Skip to content

Commit

Permalink
Suppress verbose output
Browse files Browse the repository at this point in the history
Signed-off-by: coleramos425 <colramos@amd.com>
  • Loading branch information
coleramos425 committed May 30, 2023
1 parent 2daeb1b commit 62304b8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/omniperf_analyze/utils/gui_components/roofline.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,8 @@ def generate_plots(
fig = go.Figure()
plotMode = "lines+text" if is_standalone else "lines"
line_data = roofline_calc.empirical_roof(roof_info, mem_level, verbose)
print("Line data:\n", line_data)
if verbose:
print("Line data:\n", line_data)

#######################
# Plot BW Lines
Expand Down

0 comments on commit 62304b8

Please sign in to comment.