// Copyright (c) 2022 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/cast_kernel.h" #include "paddle/phi/backends/xpu/enforce_xpu.h" #include "paddle/phi/backends/xpu/xpu_context.h" #include "paddle/phi/common/float16.h" #include "paddle/phi/core/enforce.h" #include "paddle/phi/core/kernel_registry.h" // See Note [ Why still include the fluid headers? ] #include "paddle/fluid/platform/device/xpu/xpu_header.h" namespace phi { template void CastKernel(const Context& dev_ctx, const DenseTensor& x, DataType out_dtype, DenseTensor* out) { using XPUInTDType = typename XPUTypeTrait::Type; using float16 = typename XPUTypeTrait::Type; auto* in_data = x.data(); auto numel = x.numel(); int r = -1; switch (out_dtype) { case phi::DataType::FLOAT32: r = xpu::cast_v2( dev_ctx.x_context(), reinterpret_cast(in_data), dev_ctx.template Alloc(out), numel); break; case phi::DataType::FLOAT16: r = xpu::cast_v2( dev_ctx.x_context(), reinterpret_cast(in_data), reinterpret_cast( dev_ctx.template Alloc(out)), numel); break; case phi::DataType::INT64: r = xpu::cast_v2( dev_ctx.x_context(), reinterpret_cast(in_data), dev_ctx.template Alloc(out), numel); break; case phi::DataType::INT32: r = xpu::cast_v2( dev_ctx.x_context(), reinterpret_cast(in_data), dev_ctx.template Alloc(out), numel); break; case phi::DataType::BOOL: r = xpu::cast_v2( dev_ctx.x_context(), reinterpret_cast(in_data), dev_ctx.template Alloc(out), numel); break; case phi::DataType::UINT8: r = xpu::cast_v2( dev_ctx.x_context(), reinterpret_cast(in_data), dev_ctx.template Alloc(out), numel); break; case phi::DataType::FLOAT64: r = xpu::cast_v2( dev_ctx.x_context(), reinterpret_cast(in_data), dev_ctx.template Alloc(out), numel); break; default: PADDLE_THROW(phi::errors::Unavailable( "Not supported cast %d -> %d", x.dtype(), out_dtype)); } PADDLE_ENFORCE_XDNN_SUCCESS(r, "cast_v2"); } } // namespace phi PD_REGISTER_KERNEL(cast, XPU, ALL_LAYOUT, phi::CastKernel, int32_t, float, phi::dtype::float16, int64_t, bool, uint8_t, double) { kernel->OutputAt(0).SetDataType(paddle::experimental::DataType::UNDEFINED); }