Skip to content

Commit 0db14fe

Browse files
committed
ggml : fix the rope fix (513f861)
1 parent 03e5669 commit 0db14fe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ggml.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12379,7 +12379,7 @@ static void ggml_compute_forward_rope_back_f32(
1237912379
const struct ggml_tensor * src1,
1238012380
struct ggml_tensor * dst) {
1238112381
assert(src1->type == GGML_TYPE_I32);
12382-
assert(ggml_nelements(src1) == 3);
12382+
assert(ggml_nelements(src1) == 4);
1238312383

1238412384
if (params->type == GGML_TASK_INIT || params->type == GGML_TASK_FINALIZE) {
1238512385
return;

0 commit comments

Comments
 (0)