compare_op.cu 4.1 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
namespace ops = paddle::operators;
namespace plat = paddle::platform;

namespace paddle {
namespace operators {

24
#define DEFINE_CMP_BINARY_FUNCTOR_WITH_PONTER_INPUT(func, op) \
25
  template <typename T, typename Enable = void>               \
26
  struct func {                                               \
27 28 29 30 31 32
    using ELEMENT_TYPE = T;                                   \
    inline HOSTDEVICE bool operator()(const T* args) const {  \
      return args[0] op args[1];                              \
    }                                                         \
  };

33 34 35 36 37 38
DEFINE_CMP_BINARY_FUNCTOR_WITH_PONTER_INPUT(CudaLessThanFunctor, <)
DEFINE_CMP_BINARY_FUNCTOR_WITH_PONTER_INPUT(CudaLessEqualFunctor, <=)
DEFINE_CMP_BINARY_FUNCTOR_WITH_PONTER_INPUT(CudaGreaterThanFunctor, >)
DEFINE_CMP_BINARY_FUNCTOR_WITH_PONTER_INPUT(CudaGreaterEqualFunctor, >=)
DEFINE_CMP_BINARY_FUNCTOR_WITH_PONTER_INPUT(CudaEqualFunctor, ==)
DEFINE_CMP_BINARY_FUNCTOR_WITH_PONTER_INPUT(CudaNotEqualFunctor, !=)
39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
#undef DEFINE_CMP_BINARY_FUNCTOR_WITH_PONTER_INPUT

template <typename T>
struct CudaEqualFunctor<
    T, typename std::enable_if<std::is_floating_point<T>::value>::type> {
  using ELEMENT_TYPE = T;
  HOSTDEVICE bool operator()(const T* args) const {
    return fabs(static_cast<double>(args[0] - args[1])) < 1e-8;
  }
};

template <typename T>
struct CudaNotEqualFunctor<
    T, typename std::enable_if<std::is_floating_point<T>::value>::type> {
  using ELEMENT_TYPE = T;
  HOSTDEVICE bool operator()(const T* args) const {
    return fabs(static_cast<double>(args[0] - args[1])) > 1e-8;
  }
};

template <typename Functor, typename InverseFunctor>
class CompareOpKernel<platform::CUDADeviceContext, Functor, InverseFunctor>
    : public framework::OpKernel<typename Functor::ELEMENT_TYPE> {
 public:
 public:
  using InT = typename Functor::ELEMENT_TYPE;
  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;
70 71
    const auto& cuda_ctx =
        ctx.template device_context<platform::CUDADeviceContext>();
72

73
    int axis = PackTensorsIntoVector<OutT>(ctx, &ins, &outs);
74
    LaunchElementwiseCudaKernel<ElementwiseType::kBinary, InT, OutT>(
75
        cuda_ctx, ins, &outs, axis, functor);
76 77 78 79 80 81 82 83
  }
};

}  // namespace operators
}  // namespace paddle

#define REGISTER_CUDA_COMPARE_KERNEL(op_type, func)                            \
  REGISTER_OP_CUDA_KERNEL(                                                     \
84
      op_type,                                                                 \
85
      ops::CompareOpKernel<plat::CUDADeviceContext, ops::func<bool>, void>,    \
86 87 88 89
      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>);
90

91 92 93 94 95 96
REGISTER_CUDA_COMPARE_KERNEL(equal, CudaEqualFunctor)
REGISTER_CUDA_COMPARE_KERNEL(not_equal, CudaNotEqualFunctor)
REGISTER_CUDA_COMPARE_KERNEL(less_than, CudaLessThanFunctor)
REGISTER_CUDA_COMPARE_KERNEL(less_equal, CudaLessEqualFunctor)
REGISTER_CUDA_COMPARE_KERNEL(greater_than, CudaGreaterThanFunctor)
REGISTER_CUDA_COMPARE_KERNEL(greater_equal, CudaGreaterEqualFunctor)
97
#undef REGISTER_CUDA_COMPARE_KERNEL