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.
Tá an tiomantas seo le fáil i:
Ben Richard
2025-11-07 09:33:43 -05:00
tiomanta ag GitHub
tuismitheoir fabdab7aa4
tiomantas b299eece9b
+1 -1
Féach ar an gComhad
@@ -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