Skip to content

Commit 660836f

Browse files
committed
fix call to ggml_set_name
1 parent 9dd8e40 commit 660836f

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
@@ -6743,7 +6743,7 @@ struct ggml_tensor * ggml_diag_mask_zero_impl(
67436743

67446744
struct ggml_tensor * result = inplace ? ggml_view_tensor(ctx, a) : ggml_dup_tensor(ctx, a);
67456745
struct ggml_tensor * b = ggml_new_tensor_1d(ctx, GGML_TYPE_I32, 2);
6746-
ggml_set_name(b, "n_past", "inplace");
6746+
ggml_set_name(b, "n_past, inplace");
67476747
((int32_t *) b->data)[0] = n_past;
67486748
((int32_t *) b->data)[1] = inplace ? 1 : 0;
67496749

0 commit comments

Comments
 (0)