From 56c78d16d21ebf5d15e22480d73625cfc5c15de0 Mon Sep 17 00:00:00 2001 From: Sebastian Apel <13675545+SebastianApel@users.noreply.github.com> Date: Sun, 2 Apr 2023 21:16:43 +0200 Subject: [PATCH] Reviewer feedback: Updated clean: and benchmark: sections --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index d00f110fc..707dfa358 100644 --- a/Makefile +++ b/Makefile @@ -235,7 +235,7 @@ common.o: examples/common.cpp examples/common.h $(CXX) $(CXXFLAGS) -c examples/common.cpp -o common.o clean: - rm -vf *.o main quantize perplexity embedding + rm -vf *.o main quantize perplexity embedding examples/benchmark/benchmark-q4_0-matmult main: examples/main/main.cpp ggml.o llama.o common.o $(CXX) $(CXXFLAGS) examples/main/main.cpp ggml.o llama.o common.o -o main $(LDFLAGS) @@ -257,8 +257,8 @@ embedding: examples/embedding/embedding.cpp ggml.o llama.o common.o # benchmark: ggml.o - $(CXX) $(CXXFLAGS) tests/test-benchmark-q4_0-matmult.c ggml.o -o tests/test-benchmark-q4_0-matmult $(LDFLAGS) - tests/test-benchmark-q4_0-matmult + $(CXX) $(CXXFLAGS) examples/benchmark/benchmark-q4_0-matmult.c ggml.o -o examples/benchmark/benchmark-q4_0-matmult $(LDFLAGS) + examples/benchmark/benchmark-q4_0-matmult .PHONY: tests tests: