-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakeLists.txt
71 lines (68 loc) · 2.25 KB
/
CMakeLists.txt
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
cmake_minimum_required(VERSION 3.9)
project(comparison_gpu)
set(CMAKE_CXX_STANDARD 11)
include_directories(opencl/util)
include_directories(cuda/util)
include_directories(cuda/cub)
add_executable(comparison_gpu
common/utility.cpp
common/utility.h
cuda/test_gather.cu
cuda/test_bandwidth.cu
obsolete/CUDA/radixSortCUB.cu
cuda/test_scan.cu
obsolete/CUDA/scanThrust.cu
obsolete/CUDA/scatter.cu
cuda/test_split.cu
obsolete/CUDA/split_threads.cu
opencl/CL/cl.h
opencl/CL/cl.hpp
opencl/CL/cl_egl.h
opencl/CL/cl_ext.h
opencl/CL/cl_gl.h
opencl/CL/cl_gl_ext.h
opencl/CL/cl_platform.h
opencl/CL/opencl.h
opencl/primitives/gatherImpl.cpp
obsolete/OpenCL/nphjImpl.cpp
obsolete/OpenCL/phjImpl.cpp
opencl/primitives/scanImpl.cpp
opencl/primitives/scatterImpl.cpp
opencl/primitives/splitImpl.cpp
opencl/kernels/gather_kernel.cl
obsolete/OpenCL/hj_non_partitioned_kernel.cl
obsolete/OpenCL/hj_partitioned_kernel.cl
opencl/kernels/mem_kernel.cl
opencl/kernels/scan_local_kernel.cl
opencl/kernels/scan_global_RSS_kernel.cl
opencl/kernels/scan_global_RSS_single_kernel.cl
opencl/kernels/scatter_kernel.cl
opencl/kernels/split_kernel.cl
opencl/test/test_scan_local.cpp
opencl/primitives.h
opencl/util/log.cpp
opencl/util/log.h
opencl/util/opencl_fake.h
opencl/util/Plat.cpp
opencl/util/Plat.h
opencl/util/utility.cpp
opencl/util/utility.h
opencl/CMakeLists.txt
opencl/params.h
obsolete/OpenMP/functions.h
obsolete/OpenMP/gather.cpp
obsolete/OpenMP/latency.cpp
obsolete/OpenMP/main.cpp
obsolete/OpenMP/map.cpp
obsolete/OpenMP/mem.cpp
obsolete/OpenMP/radixSort.cpp
obsolete/OpenMP/scan.cpp
obsolete/OpenMP/scatter.cpp
obsolete/OpenMP/vpu.cpp
openmp/test_gather_scatter_CPU.cpp
obsolete/OpenMP/gather_scatter_MIC.cpp
openmp/test_bandwidth_CPU.cpp
obsolete/OpenMP/mul_omp.cpp
openmp/test_scan_CPU.cpp
obsolete/OpenMP/scan_tbb.cpp
)