Skip to content
This repository has been archived by the owner on Mar 21, 2024. It is now read-only.

Commit

Permalink
Fix missing kernel for ARM builds. (#1876)
Browse files Browse the repository at this point in the history
  • Loading branch information
wmaxey authored Mar 2, 2023
1 parent 6f64b4a commit 89f0390
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion testing/cuda/reduce.cu
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
#include <thrust/iterator/constant_iterator.h>


#ifdef THRUST_TEST_DEVICE_SIDE
template<typename ExecutionPolicy, typename Iterator, typename T, typename Iterator2>
__global__
void reduce_kernel(ExecutionPolicy exec, Iterator first, Iterator last, T init, Iterator2 result)
Expand All @@ -13,6 +12,7 @@ void reduce_kernel(ExecutionPolicy exec, Iterator first, Iterator last, T init,
}


#ifdef THRUST_TEST_DEVICE_SIDE
template<typename T, typename ExecutionPolicy>
void TestReduceDevice(ExecutionPolicy exec, const size_t n)
{
Expand Down

0 comments on commit 89f0390

Please sign in to comment.