Files
2026-07-13 12:40:42 +08:00

48 lines
1.8 KiB
C++

// 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/label_smooth_kernel.h"
#include "paddle/phi/backends/xpu/enforce_xpu.h"
#include "paddle/phi/core/kernel_registry.h"
namespace phi {
template <typename T, typename Context>
void LabelSmoothKernel(const Context& dev_ctx,
const DenseTensor& label,
const optional<DenseTensor>& prior_dist,
float epsilon,
DenseTensor* out) {
auto label_dim = label.dims()[label.dims().size() - 1];
if (label.numel() == 0) {
dev_ctx.template Alloc<T>(out);
return;
}
auto ptr = dev_ctx.template Alloc<T>(out);
if (prior_dist.is_initialized()) {
PADDLE_THROW(
common::errors::External("XPU doesn't support dist label smooth"));
} else {
int r = xpu::label_smooth<T>(dev_ctx.x_context(),
label.data<T>(),
ptr,
label.numel(),
epsilon,
label_dim);
PADDLE_ENFORCE_XDNN_SUCCESS(r, "label_smooth");
}
}
} // namespace phi
PD_REGISTER_KERNEL(
label_smooth, XPU, ALL_LAYOUT, phi::LabelSmoothKernel, float) {}