From 7fff8782e356391b62d302d70bf2bbc33d4fb582 Mon Sep 17 00:00:00 2001 From: daboe01 Date: Wed, 14 Jun 2023 12:27:35 +0200 Subject: [PATCH] fixed: targed was in wrong line --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 691479889..acf3dca79 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ # Define the default target now so that it is always the first target -BUILD_TARGETS = main quantize quantize-stats perplexity embedding vdot +BUILD_TARGETS = main quantize quantize-stats perplexity embedding vdot finetune ifdef LLAMA_BUILD_SERVER BUILD_TARGETS += server @@ -98,7 +98,7 @@ endif # Architecture specific # TODO: probably these flags need to be tweaked on some architectures -# feel free to update the Makefile for your architecture and send a pull request or issue finetune +# feel free to update the Makefile for your architecture and send a pull request or issue ifeq ($(UNAME_M),$(filter $(UNAME_M),x86_64 i686)) # Use all CPU extensions that are available: CFLAGS += -march=native -mtune=native