From c4ea5a3bfd760ee5afcc66cd268f596bafa76887 Mon Sep 17 00:00:00 2001 From: Evghenii Date: Tue, 28 Jan 2014 21:45:08 +0100 Subject: [PATCH] first commit --- examples_ptx/mergeSort/Makefile_cpu | 9 +++++++++ examples_ptx/mergeSort/Makefile_gpu | 13 +++++++++++++ 2 files changed, 22 insertions(+) create mode 100644 examples_ptx/mergeSort/Makefile_cpu create mode 100644 examples_ptx/mergeSort/Makefile_gpu diff --git a/examples_ptx/mergeSort/Makefile_cpu b/examples_ptx/mergeSort/Makefile_cpu new file mode 100644 index 00000000..423c7051 --- /dev/null +++ b/examples_ptx/mergeSort/Makefile_cpu @@ -0,0 +1,9 @@ + +EXAMPLE=radixSort +CPP_SRC=radixSort.cpp +ISPC_SRC=radixSort.ispc +ISPC_IA_TARGETS=avx1-i32x8 +ISPC_ARM_TARGETS=neon +#ISPC_FLAGS=-DDEBUG -g + +include ../common.mk diff --git a/examples_ptx/mergeSort/Makefile_gpu b/examples_ptx/mergeSort/Makefile_gpu new file mode 100644 index 00000000..bc1c1d67 --- /dev/null +++ b/examples_ptx/mergeSort/Makefile_gpu @@ -0,0 +1,13 @@ +PROG=radixSort +ISPC_SRC=radixSort.ispc +#CU_SRC=radixSort.cu +CXX_SRC=radixSort.cpp radixSort.cpp +PTXCC_REGMAX=64 + +# LLVM_GPU=1 +NVVM_GPU=1 + +include ../common_gpu.mk + + +