Skip to content

Commit

Permalink
Revert include changes.
Browse files Browse the repository at this point in the history
  • Loading branch information
bdice committed May 3, 2022
1 parent 33173e4 commit 8ebe02b
Show file tree
Hide file tree
Showing 34 changed files with 67 additions and 67 deletions.
4 changes: 2 additions & 2 deletions cpp/src/binaryop/compiled/ATan2.cu
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2021-2022, NVIDIA CORPORATION.
* Copyright (c) 2021, NVIDIA CORPORATION.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand All @@ -14,7 +14,7 @@
* limitations under the License.
*/

#include <binaryop/compiled/binary_ops.cuh>
#include "binary_ops.cuh"

namespace cudf::binops::compiled {
template void apply_binary_op<ops::ATan2>(mutable_column_device_view&,
Expand Down
4 changes: 2 additions & 2 deletions cpp/src/binaryop/compiled/Add.cu
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2021-2022, NVIDIA CORPORATION.
* Copyright (c) 2021, NVIDIA CORPORATION.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand All @@ -14,7 +14,7 @@
* limitations under the License.
*/

#include <binaryop/compiled/binary_ops.cuh>
#include "binary_ops.cuh"

namespace cudf::binops::compiled {
template void apply_binary_op<ops::Add>(mutable_column_device_view&,
Expand Down
4 changes: 2 additions & 2 deletions cpp/src/binaryop/compiled/BitwiseAnd.cu
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2021-2022, NVIDIA CORPORATION.
* Copyright (c) 2021, NVIDIA CORPORATION.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand All @@ -14,7 +14,7 @@
* limitations under the License.
*/

#include <binaryop/compiled/binary_ops.cuh>
#include "binary_ops.cuh"

namespace cudf::binops::compiled {
template void apply_binary_op<ops::BitwiseAnd>(mutable_column_device_view&,
Expand Down
4 changes: 2 additions & 2 deletions cpp/src/binaryop/compiled/BitwiseOr.cu
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2021-2022, NVIDIA CORPORATION.
* Copyright (c) 2021, NVIDIA CORPORATION.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand All @@ -14,7 +14,7 @@
* limitations under the License.
*/

#include <binaryop/compiled/binary_ops.cuh>
#include "binary_ops.cuh"

namespace cudf::binops::compiled {
template void apply_binary_op<ops::BitwiseOr>(mutable_column_device_view&,
Expand Down
4 changes: 2 additions & 2 deletions cpp/src/binaryop/compiled/BitwiseXor.cu
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2021-2022, NVIDIA CORPORATION.
* Copyright (c) 2021, NVIDIA CORPORATION.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand All @@ -14,7 +14,7 @@
* limitations under the License.
*/

#include <binaryop/compiled/binary_ops.cuh>
#include "binary_ops.cuh"

namespace cudf::binops::compiled {
template void apply_binary_op<ops::BitwiseXor>(mutable_column_device_view&,
Expand Down
4 changes: 2 additions & 2 deletions cpp/src/binaryop/compiled/Div.cu
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2021-2022, NVIDIA CORPORATION.
* Copyright (c) 2021, NVIDIA CORPORATION.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand All @@ -14,7 +14,7 @@
* limitations under the License.
*/

#include <binaryop/compiled/binary_ops.cuh>
#include "binary_ops.cuh"

namespace cudf::binops::compiled {
template void apply_binary_op<ops::Div>(mutable_column_device_view&,
Expand Down
4 changes: 2 additions & 2 deletions cpp/src/binaryop/compiled/FloorDiv.cu
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2021-2022, NVIDIA CORPORATION.
* Copyright (c) 2021, NVIDIA CORPORATION.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand All @@ -14,7 +14,7 @@
* limitations under the License.
*/

#include <binaryop/compiled/binary_ops.cuh>
#include "binary_ops.cuh"

namespace cudf::binops::compiled {
template void apply_binary_op<ops::FloorDiv>(mutable_column_device_view&,
Expand Down
4 changes: 2 additions & 2 deletions cpp/src/binaryop/compiled/Greater.cu
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2021-2022, NVIDIA CORPORATION.
* Copyright (c) 2021, NVIDIA CORPORATION.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand All @@ -14,7 +14,7 @@
* limitations under the License.
*/

#include <binaryop/compiled/binary_ops.cuh>
#include "binary_ops.cuh"

namespace cudf::binops::compiled {
template void apply_binary_op<ops::Greater>(mutable_column_device_view&,
Expand Down
4 changes: 2 additions & 2 deletions cpp/src/binaryop/compiled/GreaterEqual.cu
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2021-2022, NVIDIA CORPORATION.
* Copyright (c) 2021, NVIDIA CORPORATION.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand All @@ -14,7 +14,7 @@
* limitations under the License.
*/

#include <binaryop/compiled/binary_ops.cuh>
#include "binary_ops.cuh"

namespace cudf::binops::compiled {
template void apply_binary_op<ops::GreaterEqual>(mutable_column_device_view&,
Expand Down
4 changes: 2 additions & 2 deletions cpp/src/binaryop/compiled/Less.cu
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2021-2022, NVIDIA CORPORATION.
* Copyright (c) 2021, NVIDIA CORPORATION.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand All @@ -14,7 +14,7 @@
* limitations under the License.
*/

#include <binaryop/compiled/binary_ops.cuh>
#include "binary_ops.cuh"

namespace cudf::binops::compiled {
template void apply_binary_op<ops::Less>(mutable_column_device_view&,
Expand Down
4 changes: 2 additions & 2 deletions cpp/src/binaryop/compiled/LessEqual.cu
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2021-2022, NVIDIA CORPORATION.
* Copyright (c) 2021, NVIDIA CORPORATION.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand All @@ -14,7 +14,7 @@
* limitations under the License.
*/

#include <binaryop/compiled/binary_ops.cuh>
#include "binary_ops.cuh"

namespace cudf::binops::compiled {
template void apply_binary_op<ops::LessEqual>(mutable_column_device_view&,
Expand Down
4 changes: 2 additions & 2 deletions cpp/src/binaryop/compiled/LogBase.cu
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2021-2022, NVIDIA CORPORATION.
* Copyright (c) 2021, NVIDIA CORPORATION.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand All @@ -14,7 +14,7 @@
* limitations under the License.
*/

#include <binaryop/compiled/binary_ops.cuh>
#include "binary_ops.cuh"

namespace cudf::binops::compiled {
template void apply_binary_op<ops::LogBase>(mutable_column_device_view&,
Expand Down
4 changes: 2 additions & 2 deletions cpp/src/binaryop/compiled/LogicalAnd.cu
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2021-2022, NVIDIA CORPORATION.
* Copyright (c) 2021, NVIDIA CORPORATION.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand All @@ -14,7 +14,7 @@
* limitations under the License.
*/

#include <binaryop/compiled/binary_ops.cuh>
#include "binary_ops.cuh"

namespace cudf::binops::compiled {
template void apply_binary_op<ops::LogicalAnd>(mutable_column_device_view&,
Expand Down
4 changes: 2 additions & 2 deletions cpp/src/binaryop/compiled/LogicalOr.cu
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2021-2022, NVIDIA CORPORATION.
* Copyright (c) 2021, NVIDIA CORPORATION.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand All @@ -14,7 +14,7 @@
* limitations under the License.
*/

#include <binaryop/compiled/binary_ops.cuh>
#include "binary_ops.cuh"

namespace cudf::binops::compiled {
template void apply_binary_op<ops::LogicalOr>(mutable_column_device_view&,
Expand Down
4 changes: 2 additions & 2 deletions cpp/src/binaryop/compiled/Mod.cu
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2021-2022, NVIDIA CORPORATION.
* Copyright (c) 2021, NVIDIA CORPORATION.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand All @@ -14,7 +14,7 @@
* limitations under the License.
*/

#include <binaryop/compiled/binary_ops.cuh>
#include "binary_ops.cuh"

namespace cudf::binops::compiled {
template void apply_binary_op<ops::Mod>(mutable_column_device_view&,
Expand Down
4 changes: 2 additions & 2 deletions cpp/src/binaryop/compiled/Mul.cu
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2021-2022, NVIDIA CORPORATION.
* Copyright (c) 2021, NVIDIA CORPORATION.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand All @@ -14,7 +14,7 @@
* limitations under the License.
*/

#include <binaryop/compiled/binary_ops.cuh>
#include "binary_ops.cuh"

namespace cudf::binops::compiled {
template void apply_binary_op<ops::Mul>(mutable_column_device_view&,
Expand Down
4 changes: 2 additions & 2 deletions cpp/src/binaryop/compiled/NullEquals.cu
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2021-2022, NVIDIA CORPORATION.
* Copyright (c) 2021, NVIDIA CORPORATION.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand All @@ -14,7 +14,7 @@
* limitations under the License.
*/

#include <binaryop/compiled/binary_ops.cuh>
#include "binary_ops.cuh"

namespace cudf::binops::compiled {
template void apply_binary_op<ops::NullEquals>(mutable_column_device_view&,
Expand Down
2 changes: 1 addition & 1 deletion cpp/src/binaryop/compiled/NullLogicalAnd.cu
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

#include <binaryop/compiled/binary_ops.cuh>
#include "binary_ops.cuh"

namespace cudf::binops::compiled {
template void apply_binary_op<ops::NullLogicalAnd>(mutable_column_device_view&,
Expand Down
2 changes: 1 addition & 1 deletion cpp/src/binaryop/compiled/NullLogicalOr.cu
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

#include <binaryop/compiled/binary_ops.cuh>
#include "binary_ops.cuh"

namespace cudf::binops::compiled {
template void apply_binary_op<ops::NullLogicalOr>(mutable_column_device_view&,
Expand Down
4 changes: 2 additions & 2 deletions cpp/src/binaryop/compiled/NullMax.cu
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2021-2022, NVIDIA CORPORATION.
* Copyright (c) 2021, NVIDIA CORPORATION.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand All @@ -14,7 +14,7 @@
* limitations under the License.
*/

#include <binaryop/compiled/binary_ops.cuh>
#include "binary_ops.cuh"

namespace cudf::binops::compiled {
template void apply_binary_op<ops::NullMax>(mutable_column_device_view&,
Expand Down
4 changes: 2 additions & 2 deletions cpp/src/binaryop/compiled/NullMin.cu
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2021-2022, NVIDIA CORPORATION.
* Copyright (c) 2021, NVIDIA CORPORATION.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand All @@ -14,7 +14,7 @@
* limitations under the License.
*/

#include <binaryop/compiled/binary_ops.cuh>
#include "binary_ops.cuh"

namespace cudf::binops::compiled {
template void apply_binary_op<ops::NullMin>(mutable_column_device_view&,
Expand Down
4 changes: 2 additions & 2 deletions cpp/src/binaryop/compiled/PMod.cu
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2021-2022, NVIDIA CORPORATION.
* Copyright (c) 2021, NVIDIA CORPORATION.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand All @@ -14,7 +14,7 @@
* limitations under the License.
*/

#include <binaryop/compiled/binary_ops.cuh>
#include "binary_ops.cuh"

namespace cudf::binops::compiled {
template void apply_binary_op<ops::PMod>(mutable_column_device_view&,
Expand Down
4 changes: 2 additions & 2 deletions cpp/src/binaryop/compiled/Pow.cu
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2021-2022, NVIDIA CORPORATION.
* Copyright (c) 2021, NVIDIA CORPORATION.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand All @@ -14,7 +14,7 @@
* limitations under the License.
*/

#include <binaryop/compiled/binary_ops.cuh>
#include "binary_ops.cuh"

namespace cudf::binops::compiled {
template void apply_binary_op<ops::Pow>(mutable_column_device_view&,
Expand Down
4 changes: 2 additions & 2 deletions cpp/src/binaryop/compiled/PyMod.cu
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2021-2022, NVIDIA CORPORATION.
* Copyright (c) 2021, NVIDIA CORPORATION.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand All @@ -14,7 +14,7 @@
* limitations under the License.
*/

#include <binaryop/compiled/binary_ops.cuh>
#include "binary_ops.cuh"

namespace cudf::binops::compiled {
template void apply_binary_op<ops::PyMod>(mutable_column_device_view&,
Expand Down
4 changes: 2 additions & 2 deletions cpp/src/binaryop/compiled/ShiftLeft.cu
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2021-2022, NVIDIA CORPORATION.
* Copyright (c) 2021, NVIDIA CORPORATION.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand All @@ -14,7 +14,7 @@
* limitations under the License.
*/

#include <binaryop/compiled/binary_ops.cuh>
#include "binary_ops.cuh"

namespace cudf::binops::compiled {
template void apply_binary_op<ops::ShiftLeft>(mutable_column_device_view&,
Expand Down
Loading

0 comments on commit 8ebe02b

Please sign in to comment.