Skip to content

Commit

Permalink
Header switch
Browse files Browse the repository at this point in the history
  • Loading branch information
codereport committed Feb 5, 2021
1 parent bac6a78 commit cb9ebd9
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
3 changes: 2 additions & 1 deletion cpp/src/column/column_view.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,10 @@
#include <cudf/utilities/error.hpp>
#include <cudf/utilities/traits.hpp>

#include <cudf_test/column_wrapper.hpp>
#include <thrust/iterator/transform_iterator.h>

#include <exception>
#include <numeric>
#include <vector>

namespace cudf {
Expand Down
5 changes: 2 additions & 3 deletions cpp/src/copying/slice.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,13 @@
#include <cudf/column/column_view.hpp>
#include <cudf/copying.hpp>
#include <cudf/detail/copy.hpp>
#include <cudf/detail/iterator.cuh>
#include <cudf/detail/null_mask.hpp>
#include <cudf/detail/nvtx/ranges.hpp>
#include <cudf/utilities/error.hpp>

#include <rmm/cuda_stream_view.hpp>

#include <cudf_test/column_wrapper.hpp> // TODO replace with cudf header

#include <algorithm>

namespace cudf {
Expand Down Expand Up @@ -54,7 +53,7 @@ std::vector<column_view> slice(column_view const& input,
input.offset() + begin,
children};
};
auto begin = cudf::test::make_counting_transform_iterator(0, op);
auto begin = cudf::detail::make_counting_transform_iterator(0, op);
return {begin, begin + indices.size() / 2};
}

Expand Down
1 change: 0 additions & 1 deletion cpp/src/interop/to_arrow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@

#include <rmm/cuda_stream_view.hpp>
#include <rmm/mr/device/per_device_resource.hpp>
#include "cudf_test/column_wrapper.hpp"

namespace cudf {
namespace detail {
Expand Down

0 comments on commit cb9ebd9

Please sign in to comment.