Skip to content

Commit c0dc3d8

Browse files
authored
Merge pull request #144 from Azhng/fix-thrust-include-in-cuda-12
add required thrust include for s_filtergrid.cu
2 parents 4c22d41 + 7b664e2 commit c0dc3d8

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/popsift/s_filtergrid.cu

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,11 @@
1919
#if ! POPSIFT_IS_DEFINED(POPSIFT_DISABLE_GRID_FILTER)
2020

2121
#include <thrust/copy.h>
22+
#include <thrust/count.h>
2223
#include <thrust/device_vector.h>
2324
#include <thrust/execution_policy.h>
2425
#include <thrust/host_vector.h>
26+
#include <thrust/iterator/constant_iterator.h>
2527
#include <thrust/iterator/discard_iterator.h>
2628
#include <thrust/sequence.h>
2729
#include <thrust/sort.h>

0 commit comments

Comments
 (0)