diff options
author | CRD716 <crd716@gmail.com> | 2023-04-13 09:03:57 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-13 16:03:57 +0200 |
commit | 8cda5c981d0bf4dcb7664194b2cb9a06e2dbdd54 (patch) | |
tree | fa54f8fb25ea7e4ed5f803304d4c2b1b82a3e49d /Makefile | |
parent | ec29272175d7a79681d9919f3e755b1bcefa0478 (diff) |
fix whitespace (#944)
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -171,15 +171,15 @@ embedding: examples/embedding/embedding.cpp ggml.o llama.o common.o libllama.so: llama.o ggml.o $(CXX) $(CXXFLAGS) -shared -fPIC -o libllama.so llama.o ggml.o $(LDFLAGS) - + # # Tests # benchmark: ggml.o - $(CXX) $(CXXFLAGS) examples/benchmark/benchmark-q4_0-matmult.c ggml.o -o benchmark-q4_0-matmult $(LDFLAGS) + $(CXX) $(CXXFLAGS) examples/benchmark/benchmark-q4_0-matmult.c ggml.o -o benchmark-q4_0-matmult $(LDFLAGS) ./benchmark-q4_0-matmult - + .PHONY: tests tests: bash ./tests/run-tests.sh |