From d1bfbe9ce3a522922e89c6c4558a99d47eba080d Mon Sep 17 00:00:00 2001 From: qazal <77887910+Qazalin@users.noreply.github.com> Date: Tue, 3 Feb 2026 22:20:10 -0500 Subject: [PATCH] isolate slow llama gemm (#14525) --- extra/gemm/asm/cdna/test_asm_gemm.py | 1 + 1 file changed, 1 insertion(+) diff --git a/extra/gemm/asm/cdna/test_asm_gemm.py b/extra/gemm/asm/cdna/test_asm_gemm.py index 8281446353..53e7b6d5b5 100644 --- a/extra/gemm/asm/cdna/test_asm_gemm.py +++ b/extra/gemm/asm/cdna/test_asm_gemm.py @@ -48,6 +48,7 @@ class TestGemmLarge(unittest.TestCase): def test_gemm4(self): verify_asm_gemm(8, 4096, 14336, 4096, gpus=8) def test_gemm5(self): verify_asm_gemm(8, 4096, 4096, 14336, gpus=8) def test_gemm6(self): verify_asm_gemm(16, 4096, 4096, 14336, gpus=8) + def test_gemm7(self): verify_asm_gemm(1, 8192, 128256, 4096) if __name__ == "__main__": unittest.main()