Skip to content

Commit df9d129

Browse files
authored
Unbreak persimmon after #3837 (#4010)
1 parent a75fa57 commit df9d129

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llama.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -4209,7 +4209,7 @@ struct llm_build_context {
42094209
struct ggml_tensor * Kcur = ggml_concat(ctx0, krotated, kpass);
42104210
cb(Kcur, "Kcur", il);
42114211

4212-
struct ggml_tensor * Q = ggml_cont(ctx0, ggml_permute(ctx0, Qcur, 1, 2, 0, 3));
4212+
struct ggml_tensor * Q = ggml_cont(ctx0, ggml_permute(ctx0, Qcur, 2, 1, 0, 3));
42134213
cb(Q, "Q", il);
42144214

42154215
Kcur = ggml_cont(ctx0, ggml_permute(ctx0, Kcur, 2, 1, 0, 3));

0 commit comments

Comments
 (0)