Skip to content

Commit f3d4edf

Browse files
authored
ggml : Q4 cleanup - remove 4-bit dot product code (#1061)
* Q4 cleanup * Remove unused AVX512 Q4_0 code
1 parent 8944a13 commit f3d4edf

File tree

3 files changed

+9
-535
lines changed

3 files changed

+9
-535
lines changed

CMakeLists.txt

-1
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,6 @@ if (LLAMA_ALL_WARNINGS)
174174
-Wshadow
175175
-Wstrict-prototypes
176176
-Wpointer-arith
177-
-Wno-unused-function
178177
)
179178
set(cxx_flags
180179
-Wall

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ CXXFLAGS = -I. -I./examples -O3 -DNDEBUG -std=c++11 -fPIC
3636
LDFLAGS =
3737

3838
# warnings
39-
CFLAGS += -Wall -Wextra -Wpedantic -Wcast-qual -Wdouble-promotion -Wshadow -Wstrict-prototypes -Wpointer-arith -Wno-unused-function
39+
CFLAGS += -Wall -Wextra -Wpedantic -Wcast-qual -Wdouble-promotion -Wshadow -Wstrict-prototypes -Wpointer-arith
4040
CXXFLAGS += -Wall -Wextra -Wpedantic -Wcast-qual -Wno-unused-function -Wno-multichar
4141

4242
# OS specific

0 commit comments

Comments
 (0)