ggml-cpu : remove asserts always evaluating to false (llama/17728)

This commit is contained in:
Alberto Cabrera Pérez 2025-12-04 12:16:38 +00:00 committed by Georgi Gerganov
parent 194d016456
commit f96ebc92d2
No known key found for this signature in database
GPG Key ID: 449E073F9DC10735
1 changed files with 0 additions and 2 deletions

View File

@ -505,7 +505,6 @@ void ggml_gemv_q4_K_8x4_q8_K(int n, float * GGML_RESTRICT s, size_t bs, const vo
constexpr int blocklen = 8;
assert(n % qk == 0);
assert(nr % 4 == 0);
assert(nc % ncols_interleaved == 0);
UNUSED(nb);
@ -645,7 +644,6 @@ void ggml_gemv_q4_K_8x8_q8_K(int n,
constexpr int blocklen = 8;
assert(n % qk == 0);
assert(nr % 4 == 0);
assert(nc % ncols_interleaved == 0);
UNUSED(nb);