From e58980f80e134d650fb4e3137f813413f1f398fc Mon Sep 17 00:00:00 2001 From: biondizzle Date: Thu, 28 May 2026 06:41:59 +0000 Subject: [PATCH] fix: increase test timeout for TMEM kernel --- tests/unit/test_fmha_sm100.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/unit/test_fmha_sm100.py b/tests/unit/test_fmha_sm100.py index 96a0bfe4..849b8e08 100644 --- a/tests/unit/test_fmha_sm100.py +++ b/tests/unit/test_fmha_sm100.py @@ -47,7 +47,7 @@ print("\n" + "=" * 60) print("Running standalone FMHA SM100 test...") print("=" * 60) -result = subprocess.run([out], capture_output=True, text=True, timeout=30) +result = subprocess.run([out], capture_output=True, text=True, timeout=90) print(result.stdout) if result.stderr: print(f"STDERR: {result.stderr[-500:]}")