diff test/Makefile.template @ 39:f9ca85d2f14c

*: rearrange some things; add avx512bw support
author Paper <paper@tflc.us>
date Sat, 26 Apr 2025 15:31:39 -0400
parents 4b5a557aa64f
children 55cadb1fac4b
line wrap: on
line diff
--- a/test/Makefile.template	Sat Apr 26 02:54:44 2025 -0400
+++ b/test/Makefile.template	Sat Apr 26 15:31:39 2025 -0400
@@ -3,19 +3,26 @@
 CXXFLAGS += $(CPPFLAGS) -std=c++11
 
 HEADERS = ../include/vec/vec.h \
+	../include/vec/cpu.h \
+	../include/vec/mem.h \
+	../include/vec/defs.h \
 	../include/vec/impl/ppc/altivec.h \
 	../include/vec/impl/x86/avx2.h \
 	../include/vec/impl/x86/avx512f.h \
+	../include/vec/impl/x86/avx512bw.h \
 	../include/vec/impl/x86/mmx.h \
 	../include/vec/impl/x86/sse2.h \
+	../include/vec/impl/x86/sse3.h \
 	../include/vec/impl/x86/sse41.h \
-	../include/vec/impl/cpu.h \
+	../include/vec/impl/x86/sse42.h \
 	../include/vec/impl/generic.h \
 	test_align.h \
 	test_arith.h \
 	test_compare.h \
 	test_shift.h \
-	test_benchmark.h
+	test_benchmark.h \
+	test_benchmark_vec.c \
+	test_benchmark_simple.c
 BINS = test-generic test-host test-cxx
 OBJS = test.o test-cxx.o test_benchmark_simple.o test_benchmark_vec.o