Make assert messages unique

This commit is contained in:
Aleksei Nikiforov 2025-01-15 11:53:02 +01:00
parent a9402ba2b6
commit 1d06f0f115

View file

@ -6742,19 +6742,19 @@ static void ggml_byteswap_q8_k(void * restrict buffer, size_t elements) {
}
static void ggml_byteswap_q4_0_4x4(void * restrict buffer, size_t elements) {
GGML_ASSERT(false && "byteswap function not implemented yet");
GGML_ASSERT(false && "function ggml_byteswap_q4_0_4x4 is not implemented yet");
UNUSED(buffer);
UNUSED(elements);
}
static void ggml_byteswap_q4_0_4x8(void * restrict buffer, size_t elements) {
GGML_ASSERT(false && "byteswap function not implemented yet");
GGML_ASSERT(false && "function ggml_byteswap_q4_0_4x8 is not implemented yet");
UNUSED(buffer);
UNUSED(elements);
}
static void ggml_byteswap_q4_0_8x8(void * restrict buffer, size_t elements) {
GGML_ASSERT(false && "byteswap function not implemented yet");
GGML_ASSERT(false && "function ggml_byteswap_q4_0_8x8 is not implemented yet");
UNUSED(buffer);
UNUSED(elements);
}