this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

added test for simd crash to "make testall" and thus travis CI

+4
+1
Makefile
··· 37 37 make -C test DATATYPE=int16_t CFLAGADD="$(CFLAGADD)" test 38 38 make -C test DATATYPE=float CFLAGADD="$(CFLAGADD)" test 39 39 make -C test DATATYPE=double CFLAGADD="$(CFLAGADD)" test 40 + make -C test testsse 40 41 echo "all tests passed" 41 42 42 43 tarball: clean
+3
test/Makefile
··· 67 67 test_simd: test_simd.c $(SRCFILES) 68 68 $(CC) -o $@ -g $(CFLAGS) -DUSE_SIMD=1 -msse $+ -lm 69 69 70 + testsse: test_simd 71 + ./test_simd 72 + 70 73 $(SELFTEST): $(SELFTESTSRC) $(SRCFILES) 71 74 $(CC) -o $@ $(CFLAGS) $(TYPEFLAGS) $+ -lm 72 75