Skip to content

Commit 655e5ec

Browse files
author
Lorenzo Toniazzi
committed
transpose and run cont
1 parent 8f0272c commit 655e5ec

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

_BRANCH_SETUP.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -342,4 +342,7 @@ int main() {
342342
-n 128
343343
```
344344
345-
make clean && make -j 8 LLAMA_DEBUG=1
345+
build for debug:
346+
```bash
347+
make clean && make -j 8 LLAMA_DEBUG=1
348+
```

llama.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9733,7 +9733,7 @@ struct llm_build_context {
97339733
ggml_tensor * t_lora = ggml_mul_mat(ctx0,
97349734
loraA,
97359735
ggml_mul_mat(ctx0,
9736-
ggml_transpose(ctx0, loraB),
9736+
ggml_cont(ctx0, ggml_transpose(ctx0, loraB)),
97379737
cur
97389738
)
97399739
);

0 commit comments

Comments
 (0)