From f7bd883140f85d0ce058434dd0f1034db959e368 Mon Sep 17 00:00:00 2001 From: resonantsky Date: Thu, 10 Sep 2026 16:07:14 +0200 Subject: [PATCH] Time display identical to others in console. --- scripts/rocm/rocm_log.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/rocm/rocm_log.py b/scripts/rocm/rocm_log.py index 61957b761..f3560a8f1 100644 --- a/scripts/rocm/rocm_log.py +++ b/scripts/rocm/rocm_log.py @@ -147,7 +147,7 @@ class MIOpenLogCapture: os.close(self.read_fd) self.algorithms = [match.group(1) for line in self.lines if (match := _ALGORITHM_PATTERN.search(line))] algorithm = self.algorithms[-1] if self.algorithms else "not emitted" - log.info(f'MIOpen: operation={self.operation} algorithm={algorithm} time="{self.elapsed_ms:.3f}ms"') + log.info(f'MIOpen: operation={self.operation} algorithm={algorithm} time={self.elapsed_ms:.3f}ms') return False