From b79915c0c247f6a5dbff9c13d3a6acc78715d990 Mon Sep 17 00:00:00 2001 From: Evghenii Date: Thu, 30 Jan 2014 14:04:29 +0100 Subject: [PATCH] changes to makefile --- examples_ptx/nbody/Makefile_cpu | 6 +++--- examples_ptx/nbody/Makefile_gpu | 8 ++++---- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/examples_ptx/nbody/Makefile_cpu b/examples_ptx/nbody/Makefile_cpu index a70ba750..da6fcac9 100644 --- a/examples_ptx/nbody/Makefile_cpu +++ b/examples_ptx/nbody/Makefile_cpu @@ -1,7 +1,7 @@ -EXAMPLE=sort -CPP_SRC=sort.cpp sort_serial.cpp -ISPC_SRC=sort.ispc +EXAMPLE=nbody +CPP_SRC=nbody.cpp nbody_serial.cpp +ISPC_SRC=nbody.ispc ISPC_IA_TARGETS=avx1-i32x8 ISPC_ARM_TARGETS=neon #ISPC_FLAGS=-DDEBUG diff --git a/examples_ptx/nbody/Makefile_gpu b/examples_ptx/nbody/Makefile_gpu index 97a51f26..618babe0 100644 --- a/examples_ptx/nbody/Makefile_gpu +++ b/examples_ptx/nbody/Makefile_gpu @@ -1,7 +1,7 @@ -PROG=sort -ISPC_SRC=sort.ispc -CU_SRC=sort.cu -CXX_SRC=sort.cpp sort_serial.cpp +PROG=nbody +ISPC_SRC=nbody.ispc +#CU_SRC=nbody.cu +CXX_SRC=nbody.cpp nbody_serial.cpp PTXCC_REGMAX=32 LLVM_GPU=1