// Copyright (c) 2023 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/phi/kernels/bitwise_kernel.h" #include "paddle/phi/backends/xpu/enforce_xpu.h" #include "paddle/phi/core/kernel_registry.h" #include "paddle/phi/kernels/logical_kernel.h" namespace phi { template void BitwiseNotKernel(const Context& dev_ctx, const DenseTensor& x, DenseTensor* out) { using XPUDataType = typename XPUTypeTrait::Type; dev_ctx.template Alloc(out); if (out && out->numel() == 0) return; int r = xpu::logical_not(dev_ctx.x_context(), reinterpret_cast(x.data()), reinterpret_cast(out->data()), x.numel()); PADDLE_ENFORCE_XDNN_SUCCESS(r, "logical_not"); } template void BitwiseAndKernel(const Context& dev_ctx, const DenseTensor& x, const DenseTensor& y, DenseTensor* out) { // XPU api do not support bitwise operation now. // However, because bitwise and logical operation is identical for bool type, // we can implement bitwise_and_bool kernel by calling their logical // counterpart. Need to be changed when adding support to other types. LogicalAndKernel(dev_ctx, x, y, out); } template void BitwiseOrKernel(const Context& dev_ctx, const DenseTensor& x, const DenseTensor& y, DenseTensor* out) { // Same reason as bitwise_and LogicalOrKernel(dev_ctx, x, y, out); } } // namespace phi PD_REGISTER_KERNEL(bitwise_not, XPU, ALL_LAYOUT, phi::BitwiseNotKernel, bool) {} PD_REGISTER_KERNEL(bitwise_and, XPU, ALL_LAYOUT, phi::BitwiseAndKernel, bool) {} PD_REGISTER_KERNEL(bitwise_or, XPU, ALL_LAYOUT, phi::BitwiseOrKernel, bool) {}