compare_op.cu 2.6 KB
Newer Older
1
/* Copyright (c) 2016 PaddlePaddle Authors. All Rights Reserved.
Y
Yu Yang 已提交
2

L
Luo Tao 已提交
3 4 5
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
Y
Yu Yang 已提交
6

L
Luo Tao 已提交
7
    http://www.apache.org/licenses/LICENSE-2.0
Y
Yu Yang 已提交
8

L
Luo Tao 已提交
9 10 11 12 13
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License. */
Y
Yu Yang 已提交
14

W
Wu Yi 已提交
15
#include "paddle/fluid/operators/controlflow/compare_op.h"
16
#include "paddle/fluid/operators/elementwise/elementwise_op_broadcast.cu.h"
Y
Yu Yang 已提交
17

18 19 20 21 22 23 24 25
namespace ops = paddle::operators;
namespace plat = paddle::platform;

namespace paddle {
namespace operators {

template <typename Functor, typename InverseFunctor>
class CompareOpKernel<platform::CUDADeviceContext, Functor, InverseFunctor>
26
    : public framework::OpKernel<typename Functor::ELEM_TYPE> {
27
 public:
28
  using InT = typename Functor::ELEM_TYPE;
29 30 31 32 33
  using OutT = bool;
  void Compute(const framework::ExecutionContext& ctx) const override {
    auto functor = Functor();
    std::vector<const framework::Tensor*> ins;
    std::vector<framework::Tensor*> outs;
34 35
    const auto& cuda_ctx =
        ctx.template device_context<platform::CUDADeviceContext>();
36

37
    int axis = PackTensorsIntoVector<OutT>(ctx, &ins, &outs);
38
    LaunchElementwiseCudaKernel<ElementwiseType::kBinary, InT, OutT>(
39
        cuda_ctx, ins, &outs, axis, functor);
40 41 42 43 44 45 46 47
  }
};

}  // namespace operators
}  // namespace paddle

#define REGISTER_CUDA_COMPARE_KERNEL(op_type, func)                            \
  REGISTER_OP_CUDA_KERNEL(                                                     \
48
      op_type,                                                                 \
49
      ops::CompareOpKernel<plat::CUDADeviceContext, ops::func<bool>, void>,    \
50 51 52 53
      ops::CompareOpKernel<plat::CUDADeviceContext, ops::func<int>, void>,     \
      ops::CompareOpKernel<plat::CUDADeviceContext, ops::func<int64_t>, void>, \
      ops::CompareOpKernel<plat::CUDADeviceContext, ops::func<float>, void>,   \
      ops::CompareOpKernel<plat::CUDADeviceContext, ops::func<double>, void>);
54

55 56 57 58 59 60
REGISTER_CUDA_COMPARE_KERNEL(equal, EqualFunctor)
REGISTER_CUDA_COMPARE_KERNEL(not_equal, NotEqualFunctor)
REGISTER_CUDA_COMPARE_KERNEL(less_than, LessThanFunctor)
REGISTER_CUDA_COMPARE_KERNEL(less_equal, LessEqualFunctor)
REGISTER_CUDA_COMPARE_KERNEL(greater_than, GreaterThanFunctor)
REGISTER_CUDA_COMPARE_KERNEL(greater_equal, GreaterEqualFunctor)
61
#undef REGISTER_CUDA_COMPARE_KERNEL