First commit of the radix sort example.

This commit is contained in:
Tomasz Koziara
2013-06-24 18:37:44 +01:00
parent 0dd1dbb568
commit f2452f040d
4 changed files with 405 additions and 0 deletions

8
examples/sort/Makefile Normal file
View File

@@ -0,0 +1,8 @@
EXAMPLE=sort
CPP_SRC=sort.cpp sort_serial.cpp
ISPC_SRC=sort.ispc
ISPC_TARGETS=sse2,sse4-x2,avx
#ISPC_FLAGS=-DDEBUG
include ../common.mk