corrected float ms again

This commit is contained in:
resonantsky
2026-09-10 19:03:06 +02:00
parent 34c6e19e86
commit ecd39a672d
+1 -1
View File
@@ -30,7 +30,7 @@ def _process_line(line, saved_stderr):
return
match = _CHOSEN_PATTERN.search(text)
if match:
log.info(f'MIOpen: algorithm={match.group(1)} time={float(match.group(2)):.3f}ms')
log.info(f'MIOpen: algorithm={match.group(1)} time={float(match.group(2)):.3f}')
class MIOpenLogRedirect: