| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| #pragma once |
|
|
| #include <thrust/detail/config.h> |
|
|
| #if defined(_CCCL_IMPLICIT_SYSTEM_HEADER_GCC) |
| # pragma GCC system_header |
| #elif defined(_CCCL_IMPLICIT_SYSTEM_HEADER_CLANG) |
| # pragma clang system_header |
| #elif defined(_CCCL_IMPLICIT_SYSTEM_HEADER_MSVC) |
| # pragma system_header |
| #endif |
|
|
| #if THRUST_DEVICE_COMPILER == THRUST_DEVICE_COMPILER_NVCC |
| #include <thrust/system/cuda/config.h> |
| #include <thrust/system/cuda/detail/execution_policy.h> |
| #include <thrust/pair.h> |
| #include <thrust/distance.h> |
|
|
| THRUST_NAMESPACE_BEGIN |
| namespace cuda_cub { |
|
|
| template <class Derived, |
| class InputIt1, |
| class InputIt2, |
| class BinaryPred> |
| pair<InputIt1, InputIt2> __host__ __device__ |
| mismatch(execution_policy<Derived>& policy, |
| InputIt1 first1, |
| InputIt1 last1, |
| InputIt2 first2, |
| BinaryPred binary_pred); |
|
|
| template <class Derived, |
| class InputIt1, |
| class InputIt2> |
| pair<InputIt1, InputIt2> __host__ __device__ |
| mismatch(execution_policy<Derived>& policy, |
| InputIt1 first1, |
| InputIt1 last1, |
| InputIt2 first2); |
| } |
| THRUST_NAMESPACE_END |
|
|
| #include <thrust/system/cuda/detail/find.h> |
|
|
| THRUST_NAMESPACE_BEGIN |
| namespace cuda_cub { |
|
|
| template <class Derived, |
| class InputIt1, |
| class InputIt2, |
| class BinaryPred> |
| pair<InputIt1, InputIt2> __host__ __device__ |
| mismatch(execution_policy<Derived>& policy, |
| InputIt1 first1, |
| InputIt1 last1, |
| InputIt2 first2, |
| BinaryPred binary_pred) |
| { |
| typedef transform_pair_of_input_iterators_t<bool, |
| InputIt1, |
| InputIt2, |
| BinaryPred> |
| transform_t; |
|
|
| transform_t transform_first = transform_t(first1, first2, binary_pred); |
|
|
| transform_t result = cuda_cub::find_if_not(policy, |
| transform_first, |
| transform_first + thrust::distance(first1, last1), |
| identity()); |
|
|
| return thrust::make_pair(first1 + thrust::distance(transform_first,result), |
| first2 + thrust::distance(transform_first,result)); |
| } |
|
|
| template <class Derived, |
| class InputIt1, |
| class InputIt2> |
| pair<InputIt1, InputIt2> __host__ __device__ |
| mismatch(execution_policy<Derived>& policy, |
| InputIt1 first1, |
| InputIt1 last1, |
| InputIt2 first2) |
| { |
| typedef typename thrust::iterator_value<InputIt1>::type InputType1; |
| return cuda_cub::mismatch(policy, |
| first1, |
| last1, |
| first2, |
| equal_to<InputType1>()); |
| } |
|
|
|
|
|
|
| } |
| THRUST_NAMESPACE_END |
| #endif |
|
|