Skip to content

Commit d0cc7c8

Browse files
committed
up
1 parent 59c0077 commit d0cc7c8

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

backends/mlx/custom_kernel_ops/gguf/test/test_embedding.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,10 @@ def get_test_configs(cls) -> List["GGUFEmbeddingTest"]:
6363
cls(vocab=512, K=1024, idx_shape=(4,)),
6464
cls(vocab=300, K=256, idx_shape=(16,)), # vocab not tile-aligned
6565
cls(vocab=512, K=256, idx_shape=(2, 3)), # multi-dim indices
66-
cls(vocab=262144, K=5376, idx_shape=(8,)), # real Gemma-4-31B embed
66+
# Real Gemma-4-31B embed width (K=5376, 21 Q6_K blocks/row). Vocab is
67+
# kept small so the packed weight fits CI-runner GPU buffer limits; the
68+
# gather + per-row dequant path is identical regardless of vocab.
69+
cls(vocab=2048, K=5376, idx_shape=(8,)),
6770
]
6871

6972
def create_model(self) -> nn.Module:

0 commit comments

Comments
 (0)