/* Copyright (c) 2016 PaddlePaddle Authors. All Rights Reserved. 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 http://www.apache.org/licenses/LICENSE-2.0 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. */ #include "paddle/fluid/operators/controlflow/logical_op.h" #include "paddle/fluid/operators/elementwise/elementwise_op_broadcast.cu.h" namespace ops = paddle::operators; namespace plat = paddle::platform; namespace paddle { namespace operators { #define LOGICAL_BINARY_FUNCTOR(func_name, op) \ template \ struct func_name { \ using ELEMENT_TYPE = T; \ HOSTDEVICE bool operator()(const T* args) const { \ return args[0] op args[1]; \ } \ }; LOGICAL_BINARY_FUNCTOR(CudaOrFunctor, ||) LOGICAL_BINARY_FUNCTOR(CudaAndFunctor, &&) LOGICAL_BINARY_FUNCTOR(CudaXorFunctor, ^) #undef LOGICAL_BINARY_FUNCTOR template struct CudaNotFunctor { using ELEMENT_TYPE = T; HOSTDEVICE bool operator()(const T* args) const { return !args[0]; } }; template class BinaryLogicalOpKernel : public framework::OpKernel { public: using InT = typename Functor::ELEMENT_TYPE; using OutT = bool; void Compute(const framework::ExecutionContext& ctx) const override { auto functor = Functor(); std::vector ins; std::vector outs; const auto& cuda_ctx = ctx.template device_context(); int axis = PackTensorsIntoVector(ctx, &ins, &outs); if (ins.size() == 1) { LaunchElementwiseCudaKernel( cuda_ctx, ins, &outs, axis, functor); } else { LaunchElementwiseCudaKernel( cuda_ctx, ins, &outs, axis, functor); } } }; } // namespace operators } // namespace paddle #define REGISTER_LOGICAL_CUDA_KERNEL(op_name, func) \ REGISTER_OP_CUDA_KERNEL( \ op_name, \ ops::BinaryLogicalOpKernel>); REGISTER_LOGICAL_CUDA_KERNEL(logical_or, CudaOrFunctor) REGISTER_LOGICAL_CUDA_KERNEL(logical_and, CudaAndFunctor) REGISTER_LOGICAL_CUDA_KERNEL(logical_xor, CudaXorFunctor) REGISTER_LOGICAL_CUDA_KERNEL(logical_not, CudaNotFunctor) #undef REGISTER_LOGICAL_CUDA_KERNEL