aboutsummaryrefslogtreecommitdiffhomepage
path: root/gen/Makefile
diff options
context:
space:
mode:
authorMITSUNARI Shigeo <[email protected]>2020-10-19 15:45:26 +0900
committerMITSUNARI Shigeo <[email protected]>2020-10-19 15:45:26 +0900
commitf85b1100b571cb890e91c1940c20f78d5dd66f40 (patch)
treeadb918f2b371307f32366d9ee42901499907f9db /gen/Makefile
parent276d09bae40c3a0f80e94b319dfd06a7937f5d35 (diff)
downloadxbyak-f85b1100b571cb890e91c1940c20f78d5dd66f40.tar.gz
xbyak-f85b1100b571cb890e91c1940c20f78d5dd66f40.zip
refactor vnni
Diffstat (limited to 'gen/Makefile')
-rw-r--r--gen/Makefile9
1 files changed, 1 insertions, 8 deletions
diff --git a/gen/Makefile b/gen/Makefile
index 70d5191..53d1a94 100644
--- a/gen/Makefile
+++ b/gen/Makefile
@@ -1,5 +1,5 @@
TARGET=../xbyak/xbyak_mnemonic.h
-BIN=sortline gen_code gen_avx512 gen_vnni
+BIN=sortline gen_code gen_avx512
CFLAGS=-I../ -O2 -DXBYAK_NO_OP_NAMES -Wall -Wextra -Wno-missing-field-initializers
all: $(TARGET)
sortline: sortline.cpp
@@ -8,8 +8,6 @@ gen_code: gen_code.cpp ../xbyak/xbyak.h avx_type.hpp
$(CXX) $(CFLAGS) $< -o $@
gen_avx512: gen_avx512.cpp ../xbyak/xbyak.h avx_type.hpp
$(CXX) $(CFLAGS) $< -o $@
-gen_vnni: gen_vnni.cpp ../xbyak/xbyak.h avx_type.hpp
- $(CXX) $(CFLAGS) $< -o $@
$(TARGET): $(BIN)
./gen_code | ./sortline > $@
@@ -23,11 +21,6 @@ $(TARGET): $(BIN)
./gen_avx512 64 | ./sortline >> $@
echo "#endif" >> $@
echo "#endif" >> $@
- echo "#ifdef XBYAK_DISABLE_AVX512" >> $@
- ./gen_vnni vexOnly | ./sortline >> $@
- echo "#else" >> $@
- ./gen_vnni | ./sortline >> $@
- echo "#endif" >> $@
clean:
$(RM) $(BIN) $(TARGET)