Compare commits

...
Sign in to create a new pull request.

1 commit

Author SHA1 Message Date
Aidan
4b1770109c Fix q_xxs using mul_mat_q 2024-05-27 09:46:37 +01:00

View file

@ -15243,6 +15243,7 @@ static void ggml_sycl_mul_mat(const ggml_tensor * src0, const ggml_tensor * src1
}
} else {
bool use_mul_mat_q = min_compute_capability >= VER_4VEC && ggml_is_quantized(src0->type);
use_mul_mat_q = use_mul_mat_q && (src0->type != GGML_TYPE_IQ2_XXS);
if (use_xmx && min_compute_capability >= VER_GEN9 && src1->ne[1] > XMX_MAX_BATCH_SIZE) {
use_mul_mat_q = false;