Skip to content

Commit 5a42d17

Browse files
Make assert messages unique
1 parent d80e110 commit 5a42d17

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

ggml/src/ggml.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6676,19 +6676,19 @@ static void ggml_byteswap_q8_k(void * restrict buffer, size_t elements) {
66766676
}
66776677

66786678
static void ggml_byteswap_q4_0_4x4(void * restrict buffer, size_t elements) {
6679-
GGML_ASSERT(false && "byteswap function not implemented yet");
6679+
GGML_ASSERT(false && "function ggml_byteswap_q4_0_4x4 is not implemented yet");
66806680
UNUSED(buffer);
66816681
UNUSED(elements);
66826682
}
66836683

66846684
static void ggml_byteswap_q4_0_4x8(void * restrict buffer, size_t elements) {
6685-
GGML_ASSERT(false && "byteswap function not implemented yet");
6685+
GGML_ASSERT(false && "function ggml_byteswap_q4_0_4x8 is not implemented yet");
66866686
UNUSED(buffer);
66876687
UNUSED(elements);
66886688
}
66896689

66906690
static void ggml_byteswap_q4_0_8x8(void * restrict buffer, size_t elements) {
6691-
GGML_ASSERT(false && "byteswap function not implemented yet");
6691+
GGML_ASSERT(false && "function ggml_byteswap_q4_0_8x8 is not implemented yet");
66926692
UNUSED(buffer);
66936693
UNUSED(elements);
66946694
}

0 commit comments

Comments
 (0)