From c74f2f8f042b27e1d3203e9adad97be9f3f16cdf Mon Sep 17 00:00:00 2001 From: Jason Ansel Date: Thu, 6 Nov 2025 16:23:53 -0800 Subject: [PATCH] Ignore illegal instruction errors stack-info: PR: https://github.com/pytorch/helion/pull/1093, branch: jansel/stack/216 --- helion/autotuner/logger.py | 1 + 1 file changed, 1 insertion(+) diff --git a/helion/autotuner/logger.py b/helion/autotuner/logger.py index e56542911..fa0729bb2 100644 --- a/helion/autotuner/logger.py +++ b/helion/autotuner/logger.py @@ -175,6 +175,7 @@ def format_triton_compile_failure( "illegal memory access", "misaligned address", "unspecified launch failure", + "illegal instruction", ], ) ),