Skip to content

Commit

Permalink
style fix and cuda std headers
Browse files Browse the repository at this point in the history
  • Loading branch information
mhaseeb123 committed Oct 18, 2024
1 parent 5a27bc5 commit 201d761
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions cpp/include/cudf/detail/iterator.cuh
Original file line number Diff line number Diff line change
Expand Up @@ -38,13 +38,13 @@
#include <cudf/scalar/scalar_device_view.cuh>

#include <cuda/std/optional>
#include <cuda/std/type_traits>
#include <cuda/std/utility>
#include <thrust/iterator/constant_iterator.h>
#include <thrust/iterator/counting_iterator.h>
#include <thrust/iterator/transform_iterator.h>
#include <thrust/pair.h>

#include <utility>

namespace cudf {
namespace detail {
/**
Expand All @@ -70,8 +70,8 @@ namespace detail {
template <typename CountingIterType,
typename UnaryFunction,
typename = cuda::std::enable_if_t<cuda::std::is_integral_v<CountingIterType> and
cuda::std::numeric_limits<CountingIterType>::max() <=
cuda::std::numeric_limits<cudf::size_type>::max()>>
cuda::std::numeric_limits<CountingIterType>::max() <=
cuda::std::numeric_limits<cudf::size_type>::max()>>
CUDF_HOST_DEVICE inline auto make_counting_transform_iterator(CountingIterType start,
UnaryFunction f)
{
Expand Down

0 comments on commit 201d761

Please sign in to comment.