Fix bug in rocprof-compute parsing (#1664)

Were not handling the case where the eval result is None e.g. some
columns have a peak value, but it is unused, so we use 'None', which
evaluates to the None object.

Return empty string in this case.
Этот коммит содержится в:
Ben Richard
2025-11-07 09:33:43 -05:00
коммит произвёл GitHub
родитель fabdab7aa4
Коммит b299eece9b
+1 -1
Просмотреть файл
@@ -346,7 +346,7 @@ class MetricEvaluator:
local_expr_context,
)
if np.isnan(eval_result).any():
if eval_result is None or np.isnan(eval_result).any():
return ""
else:
return eval_result