From 968253612f71f8bf2f476ba1c2d395e820a89a1a Mon Sep 17 00:00:00 2001 From: xuchen-amd Date: Fri, 13 Sep 2024 13:40:55 -0400 Subject: [PATCH] Use proper/rebranded name and icon in browser tab for Omniperf/rocprof-compute Web UI. --- src/omniperf_analyze/analysis_webui.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/omniperf_analyze/analysis_webui.py b/src/omniperf_analyze/analysis_webui.py index 320d585a..85ceac5a 100644 --- a/src/omniperf_analyze/analysis_webui.py +++ b/src/omniperf_analyze/analysis_webui.py @@ -38,10 +38,13 @@ BINARY_NAME = "rocprof-compute" + class webui_analysis(OmniAnalyze_Base): def __init__(self, args, supported_archs): super().__init__(args, supported_archs) - self.app = dash.Dash(__name__, title=BINARY_NAME, external_stylesheets=[dbc.themes.CYBORG]) + self.app = dash.Dash( + __name__, title=BINARY_NAME, external_stylesheets=[dbc.themes.CYBORG] + ) self.dest_dir = os.path.abspath(args.path[0][0]) self.arch = None