diff --git a/scripts/rocm/rocm_log.py b/scripts/rocm/rocm_log.py index 596e9b1bf..8fdd1f177 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}') return False