From e25e01cabd3016f9f10d408bac1a7dd4113ce995 Mon Sep 17 00:00:00 2001 From: Oguz Ulgen Date: Fri, 10 Oct 2025 18:55:11 -0700 Subject: [PATCH] [Benchmark] use logger.exception for process errors stack-info: PR: https://github.com/pytorch/helion/pull/902, branch: oulgen/stack/138 --- benchmarks/run.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/benchmarks/run.py b/benchmarks/run.py index db17032cc..706098240 100644 --- a/benchmarks/run.py +++ b/benchmarks/run.py @@ -987,7 +987,7 @@ def accuracy_fail_hook( try: process_result(kernel_name, tmp.readlines(), results) except Exception: - logger.info("fail", exc_info=True) + logger.exception("failed to process results") # Force garbage collection multiple times to ensure memory is freed for _ in range(3):