diff --git a/src/rocprof_compute_analyze/analysis_webui.py b/src/rocprof_compute_analyze/analysis_webui.py index 47a25cf1e..883763237 100644 --- a/src/rocprof_compute_analyze/analysis_webui.py +++ b/src/rocprof_compute_analyze/analysis_webui.py @@ -37,10 +37,15 @@ from dash.dependencies import Input, Output, State +PROJECT_NAME = "rocprofiler-compute" + + class webui_analysis(OmniAnalyze_Base): def __init__(self, args, supported_archs): super().__init__(args, supported_archs) - self.app = dash.Dash(__name__, external_stylesheets=[dbc.themes.CYBORG]) + self.app = dash.Dash( + __name__, title=PROJECT_NAME, external_stylesheets=[dbc.themes.CYBORG] + ) self.dest_dir = os.path.abspath(args.path[0][0]) self.arch = None diff --git a/src/rocprof_compute_analyze/assets/favicon.ico b/src/rocprof_compute_analyze/assets/favicon.ico new file mode 100644 index 000000000..3f148e32b Binary files /dev/null and b/src/rocprof_compute_analyze/assets/favicon.ico differ