// 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/gaussian_kernel.h" #include "paddle/phi/backends/xpu/enforce_xpu.h" #include "paddle/phi/core/generator.h" #include "paddle/phi/core/kernel_registry.h" namespace phi { template void GaussianKernel(const Context& dev_ctx, const IntArray& shape, double mean, double std, int seed, DataType dtype, DenseTensor* out) { out->Resize(shape.GetData()); T* data = dev_ctx.template Alloc(out); if (out->numel() == 0) { return; } using XPUType = typename XPUTypeTrait::Type; int64_t real_seed = seed != 0 ? seed : dev_ctx.GetGenerator()->Random64(); // int normal(Context* xpu_ctx, T* x, T mean, T std, int64_t len, int64_t // seed); int r = xpu::normal_(dev_ctx.x_context(), reinterpret_cast(data), static_cast(mean), static_cast(std), out->numel(), real_seed); PADDLE_ENFORCE_XDNN_SUCCESS(r, "normal"); } template void GaussianInplaceKernel(const Context& dev_ctx, const DenseTensor& x, float mean, float std, int seed, DenseTensor* out) { T* data = dev_ctx.template Alloc(out); if (out->numel() == 0) { return; } using XPUType = typename XPUTypeTrait::Type; int64_t real_seed = seed != 0 ? seed : dev_ctx.GetGenerator()->Random64(); int r = xpu::normal_(dev_ctx.x_context(), reinterpret_cast(data), mean, std, out->numel(), real_seed); PADDLE_ENFORCE_XDNN_SUCCESS(r, "normal"); } } // namespace phi PD_REGISTER_KERNEL(gaussian, XPU, ALL_LAYOUT, phi::GaussianKernel, float, phi::float16, phi::bfloat16) {} PD_REGISTER_KERNEL(gaussian_inplace, XPU, ALL_LAYOUT, phi::GaussianInplaceKernel, float, phi::float16, phi::bfloat16) {}