From 384de55dfd26b0e40a45fe14d210425148983f96 Mon Sep 17 00:00:00 2001 From: biondizzle Date: Sun, 24 May 2026 01:54:30 +0000 Subject: [PATCH] fix: COL_MAJOR --- tests/unit/test_cotiled_diag.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/unit/test_cotiled_diag.py b/tests/unit/test_cotiled_diag.py index 199a274d..47bc8e47 100644 --- a/tests/unit/test_cotiled_diag.py +++ b/tests/unit/test_cotiled_diag.py @@ -44,7 +44,7 @@ def main(): # V FMHA layout: use explicit constants # pv_n_tile=256, s_k=128 - v_major = LayoutEnum.COLUMN_MAJOR # layout (256, 128, 1) stride (1, 256, 32768) = col-major + v_major = LayoutEnum.COL_MAJOR # layout (256, 128, 1) stride (1, 256, 32768) = col-major c_layout = LayoutEnum.from_tensor(mC)