127 lines
4.2 KiB
C++
127 lines
4.2 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/amp_kernel.h"
|
|
|
|
#include <cmath>
|
|
|
|
#include "paddle/phi/common/amp_type_traits.h"
|
|
#include "paddle/phi/core/kernel_registry.h"
|
|
#include "paddle/phi/kernels/empty_kernel.h"
|
|
#include "paddle/phi/kernels/funcs/eigen/common.h"
|
|
#include "paddle/phi/kernels/impl/amp_kernel_impl.h"
|
|
#include "paddle/phi/kernels/isfinite_kernel.h"
|
|
#include "paddle/phi/kernels/reduce_all_kernel.h"
|
|
|
|
namespace phi {
|
|
|
|
// Utils
|
|
|
|
template <typename T, bool IsFoundInfOnCPU>
|
|
class UpdateLossScalingFunctor<CPUContext, T, IsFoundInfOnCPU> {
|
|
public:
|
|
void operator()(const CPUContext& dev_ctx UNUSED,
|
|
const bool* found_inf_data,
|
|
const T* pre_loss_scaling_data,
|
|
const int* good_in_data,
|
|
const int* bad_in_data,
|
|
const int incr_every_n_steps,
|
|
const int decr_every_n_nan_or_inf,
|
|
const float incr_ratio,
|
|
const float decr_ratio,
|
|
T* updated_loss_scaling_data,
|
|
int* good_out_data,
|
|
int* bad_out_data) const {
|
|
PADDLE_ENFORCE_EQ(
|
|
IsFoundInfOnCPU,
|
|
true,
|
|
common::errors::InvalidArgument(
|
|
"The Input(FoundInfinite) should be on the CPUPlace."));
|
|
Update<T>(found_inf_data,
|
|
pre_loss_scaling_data,
|
|
good_in_data,
|
|
bad_in_data,
|
|
incr_every_n_steps,
|
|
decr_every_n_nan_or_inf,
|
|
incr_ratio,
|
|
decr_ratio,
|
|
updated_loss_scaling_data,
|
|
good_out_data,
|
|
bad_out_data);
|
|
}
|
|
};
|
|
|
|
// Kernels
|
|
|
|
template <typename T, typename Context>
|
|
void CheckFiniteAndUnscaleKernel(const Context& dev_ctx,
|
|
const std::vector<const DenseTensor*>& xs,
|
|
const DenseTensor& scale,
|
|
std::vector<DenseTensor*> outs,
|
|
DenseTensor* found_infinite) {
|
|
const T* scale_data = scale.data<T>();
|
|
bool* found_inf_data = dev_ctx.template Alloc<bool>(found_infinite);
|
|
|
|
*found_inf_data = false;
|
|
DenseTensor is_finite = Empty<bool>(dev_ctx, {1});
|
|
bool* is_finite_data = is_finite.template data<bool>();
|
|
|
|
auto& dev = *dev_ctx.eigen_device();
|
|
|
|
T inverse_scale = 1.0 / *scale_data;
|
|
for (size_t i = 0; i < xs.size(); ++i) {
|
|
const auto* x = xs[i];
|
|
auto* out = outs[i];
|
|
dev_ctx.template Alloc<T>(out);
|
|
if (!(*found_inf_data)) {
|
|
DenseTensor tmp;
|
|
tmp.Resize(x->dims());
|
|
IsfiniteKernel<T, Context>(dev_ctx, *x, &tmp);
|
|
|
|
std::vector<int64_t> dims(x->dims().size());
|
|
std::iota(dims.begin(), dims.end(), 0);
|
|
AllKernel<bool, Context>(dev_ctx, tmp, dims, false, &is_finite);
|
|
*found_inf_data = !(*is_finite_data);
|
|
}
|
|
auto eigen_out = EigenVector<T>::Flatten(*out);
|
|
auto eigen_in = EigenVector<T>::Flatten(*x);
|
|
if (!(*found_inf_data)) {
|
|
eigen_out.device(dev) = eigen_in * inverse_scale;
|
|
} else {
|
|
eigen_out.device(dev) = eigen_in * static_cast<T>(0);
|
|
}
|
|
}
|
|
}
|
|
|
|
} // namespace phi
|
|
|
|
PD_REGISTER_KERNEL(check_finite_and_unscale,
|
|
CPU,
|
|
ALL_LAYOUT,
|
|
phi::CheckFiniteAndUnscaleKernel,
|
|
float,
|
|
double) {
|
|
kernel->OutputAt(1).SetDataType(phi::DataType::BOOL);
|
|
}
|
|
|
|
PD_REGISTER_KERNEL(update_loss_scaling,
|
|
CPU,
|
|
ALL_LAYOUT,
|
|
phi::UpdateLossScalingKernel,
|
|
float,
|
|
double) {
|
|
kernel->OutputAt(2).SetDataType(phi::DataType::INT32);
|
|
kernel->OutputAt(3).SetDataType(phi::DataType::INT32);
|
|
}
|