-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathdefs.cuda
More file actions
29 lines (21 loc) · 792 Bytes
/
defs.cuda
File metadata and controls
29 lines (21 loc) · 792 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# Update SDK_PATH to the path appropriate to your system
SDK_PATH=/Developer/GPU\ Computing/
# This should be okay as-is
NVCC=/usr/local/cuda/bin/nvcc
# This should be okay as-is
SDK_COMMON_INC=$(SDK_PATH)/C/common/inc
# This should be okay as-is
SDK_SHARED_INC=$(SDK_PATH)/C/shared/inc
# This should be okay as-is
CUDA_INCLUDE=/usr/local/cuda/include
# Update CUDA_LIB to the path appropriate to your system
# if OSX, likely: /usr/local/cuda/lib
# if Linux, likely: /usr/local/cuda/lib64
CUDA_LIB=/usr/local/cuda/lib
# Update CUDPP_PATH to the path appropriate to your system
CUDPP_PATH=$(HOME)/Desktop/cudpp_src_2.0
# This should be okay as-is
CUDPP_INC=$(CUDPP_PATH)/include
# Update CUDA_LIB to the path appropriate to your system
# If Linux, set PLATFORM=linux
PLATFORM=darwin