simd-reduce

SIMD reduce implementation and benchmark
git clone git://git.rr3.xyz/simd-reduce
Log | Files | Refs

Makefile (170B)


      1 main: main.c func.c func.h
      2 	gcc -c -Wall -O3 -march=native func.c -lrcx
      3 	gcc -o main -Wall -O3 -march=native main.c func.o -lrcx
      4 
      5 .PHONY: clean
      6 clean:
      7 	rm -f func.o main