Skip to content

Commit 9523db3

Browse files
committed
Merge branch 'master' into sync
ggml-ci
2 parents 548ec46 + 532dd74 commit 9523db3

40 files changed

+5120
-4716
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -618,7 +618,7 @@ llama-bench: examples/llama-bench/llama-bench.cpp ggml.o llama.o $(COMMON_DEPS)
618618
$(CXX) $(CXXFLAGS) $(filter-out %.h,$^) -o $@ $(LDFLAGS)
619619

620620
libllava.a: examples/llava/llava.cpp examples/llava/llava.h examples/llava/clip.cpp examples/llava/clip.h common/stb_image.h common/base64.hpp ggml.o llama.o $(COMMON_DEPS) $(OBJS)
621-
$(CXX) $(CXXFLAGS) -static -fPIC -c $< -o $@ $(LDFLAGS) -Wno-cast-qual
621+
$(CXX) $(CXXFLAGS) -static -fPIC -c $< -o $@ -Wno-cast-qual
622622

623623
llava-cli: examples/llava/llava-cli.cpp examples/llava/clip.h examples/llava/clip.cpp examples/llava/llava.h examples/llava/llava.cpp ggml.o llama.o $(COMMON_DEPS) $(OBJS)
624624
$(CXX) $(CXXFLAGS) $(filter-out %.h,$^) -o $@ $(LDFLAGS) -Wno-cast-qual

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -424,7 +424,7 @@ Building the program with BLAS support may lead to some performance improvements
424424
```
425425
426426
The environment variable [`HIP_VISIBLE_DEVICES`](https://rocm.docs.amd.com/en/latest/understand/gpu_isolation.html#hip-visible-devices) can be used to specify which GPU(s) will be used.
427-
If your GPU is not officialy supported you can use the environment variable [`HSA_OVERRIDE_GFX_VERSION`] set to a similar GPU, for example 10.3.0 on RDNA2 or 11.0.0 on RDNA3.
427+
If your GPU is not officially supported you can use the environment variable [`HSA_OVERRIDE_GFX_VERSION`] set to a similar GPU, for example 10.3.0 on RDNA2 or 11.0.0 on RDNA3.
428428
The following compilation options are also available to tweak performance (yes, they refer to CUDA, not HIP, because it uses the same code as the cuBLAS version above):
429429
430430
| Option | Legal values | Default | Description |

convert-baichuan-hf-to-gguf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
from sentencepiece import SentencePieceProcessor # type: ignore[import]
1717

1818
if 'NO_LOCAL_GGUF' not in os.environ:
19-
sys.path.insert(1, str(Path(__file__).parent / 'gguf-py' / 'gguf'))
19+
sys.path.insert(1, str(Path(__file__).parent / 'gguf-py'))
2020
import gguf
2121

2222

convert-bloom-hf-to-gguf.py

-247
This file was deleted.

0 commit comments

Comments
 (0)