Skip to content

Commit 6f484a4

Browse files
Make assert messages unique
1 parent a961c6f commit 6f484a4

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
@@ -6742,19 +6742,19 @@ static void ggml_byteswap_q8_k(void * restrict buffer, size_t elements) {
67426742
}
67436743

67446744
static void ggml_byteswap_q4_0_4x4(void * restrict buffer, size_t elements) {
6745-
GGML_ASSERT(false && "byteswap function not implemented yet");
6745+
GGML_ASSERT(false && "function ggml_byteswap_q4_0_4x4 is not implemented yet");
67466746
UNUSED(buffer);
67476747
UNUSED(elements);
67486748
}
67496749

67506750
static void ggml_byteswap_q4_0_4x8(void * restrict buffer, size_t elements) {
6751-
GGML_ASSERT(false && "byteswap function not implemented yet");
6751+
GGML_ASSERT(false && "function ggml_byteswap_q4_0_4x8 is not implemented yet");
67526752
UNUSED(buffer);
67536753
UNUSED(elements);
67546754
}
67556755

67566756
static void ggml_byteswap_q4_0_8x8(void * restrict buffer, size_t elements) {
6757-
GGML_ASSERT(false && "byteswap function not implemented yet");
6757+
GGML_ASSERT(false && "function ggml_byteswap_q4_0_8x8 is not implemented yet");
67586758
UNUSED(buffer);
67596759
UNUSED(elements);
67606760
}

0 commit comments

Comments
 (0)