Skip to content

Commit 7da998d

Browse files
committed
ggml : initial ARM_NEON 2x F16 Q4_0 implementation
1 parent efd0564 commit 7da998d

File tree

2 files changed

+243
-111
lines changed

2 files changed

+243
-111
lines changed

Makefile

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,15 @@ endif
3131
#
3232

3333
# keep standard at C11 and C++11
34-
CFLAGS = -I. -O3 -DNDEBUG -std=c11 -fPIC
35-
CXXFLAGS = -I. -I./examples -O3 -DNDEBUG -std=c++11 -fPIC
34+
CFLAGS = -I. -O3 -std=c11 -fPIC
35+
CXXFLAGS = -I. -I./examples -O3 -std=c++11 -fPIC
3636
LDFLAGS =
3737

38+
ifndef LLAMA_NO_NDEBUG
39+
CFLAGS += -DNDEBUG
40+
CXXFLAGS += -DNDEBUG
41+
endif
42+
3843
# warnings
3944
CFLAGS += -Wall -Wextra -Wpedantic -Wcast-qual -Wdouble-promotion -Wshadow -Wstrict-prototypes -Wpointer-arith -Wno-unused-function
4045
CXXFLAGS += -Wall -Wextra -Wpedantic -Wcast-qual -Wno-unused-function -Wno-multichar

0 commit comments

Comments
 (0)