Skip to content

Commit

Permalink
meson: add missing GPU sources to cuda_sources
Browse files Browse the repository at this point in the history
Signed-off-by: Steven Noonan <steven@uplinklabs.net>
  • Loading branch information
tycho committed Mar 6, 2019
1 parent e0b3f9d commit ba35804
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -92,8 +92,15 @@ if enable_cuda
cpp_args += ['-DUSE_CUDA']
cuda_sources = [
'src/nbody.cu',
'src/nbody_GPU_AOS.cu',
'src/nbody_GPU_AOS_const.cu',
'src/nbody_GPU_AOS_tiled.cu',
'src/nbody_GPU_AOS_tiled_const.cu',
'src/nbody_GPU_Atomic.cu',
'src/nbody_GPU_Shared.cu',
'src/nbody_multiGPU.cu'
'src/nbody_GPU_Shuffle.cu',
'src/nbody_GPU_SOA_tiled.cu',
'src/nbody_multiGPU.cu',
]
nvcc_bin = find_program([nvcc_name])
cuda_gen = generator(nvcc_bin,
Expand Down

0 comments on commit ba35804

Please sign in to comment.