gemm/asm: smallest cdna4 asm gemm test (#14925)

This commit is contained in:
qazal
2026-02-21 10:56:05 +08:00
committed by GitHub
parent ad3d821d63
commit 5b6fcd1cda

View File

@@ -67,6 +67,7 @@ class TestGemmLarge(unittest.TestCase):
if not is_cdna4():
self.skipTest("very slow on non mi350x")
def test_tiny(self): verify_asm_gemm(1, 256, 256, 64)
def test_simple(self): verify_asm_gemm(1, N:=getenv("N", 4096), N, N, dtype=dtypes.half)
def test_gemm(self): verify_asm_gemm(1, 8192, 4096, 14336)
def test_gemm_batched(self): verify_asm_gemm(2, 8192, 4096, 4096)