From 4aa463a4e61b9d1c391537e45cb3b78d78f5df8d Mon Sep 17 00:00:00 2001 From: Karl W Schulz Date: Fri, 8 Mar 2024 15:10:53 -0600 Subject: [PATCH] update log summary at begin of profiling mode Signed-off-by: Karl W Schulz [ROCm/rocprofiler-compute commit: 594875a974b38b26fe53f1995df0bc335a629eb0] --- .../rocprofiler-compute/src/omniperf_profile/profiler_base.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/projects/rocprofiler-compute/src/omniperf_profile/profiler_base.py b/projects/rocprofiler-compute/src/omniperf_profile/profiler_base.py index c8068c32a3..5944b52cfa 100644 --- a/projects/rocprofiler-compute/src/omniperf_profile/profiler_base.py +++ b/projects/rocprofiler-compute/src/omniperf_profile/profiler_base.py @@ -319,7 +319,8 @@ class OmniProfiler_Base: ) # log basic info - console_log(str(prog) + " ver: " + str(version)) + console_log(str(prog).title() + " version: " + str(version)) + console_log("Profiler choice: %s" % self.__profiler) console_log("Path: " + str(os.path.abspath(self.__args.path))) console_log("Target: " + str(self._soc._mspec.gpu_model)) console_log("Command: " + str(self.__args.remaining))