/* Copyright (c) 2020 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 #include #include #include "glog/logging.h" #include "paddle/phi/backends/xpu/enforce_xpu.h" #include "paddle/phi/backends/xpu/xpu_context.h" #include "paddle/phi/common/amp_type_traits.h" #include "paddle/phi/common/memory_utils.h" #include "paddle/phi/core/kernel_registry.h" namespace phi { template void UpdateLossScalingKernel(const Context& dev_ctx, const std::vector& xs, const DenseTensor& found_infinite, const DenseTensor& prev_loss_scaling, const DenseTensor& in_good_steps, const DenseTensor& in_bad_steps, int incr_every_n_steps, int decr_every_n_nan_or_inf, float incr_ratio, float decr_ratio, const Scalar& stop_update, std::vector outs, DenseTensor* loss_scaling, DenseTensor* out_good_steps, DenseTensor* out_bad_steps) { using MT = typename phi::dtype::MPTypeTrait::Type; using XPUType = typename XPUTypeTrait::Type; PADDLE_ENFORCE_EQ(found_infinite.numel(), 1, common::errors::InvalidArgument( "FoundInfinite must has only one element.")); const bool* found_inf_data = found_infinite.data(); bool cpu_found_inf_data = false; if (found_infinite.place().GetType() == AllocationType::XPU) { memory_utils::Copy(CPUPlace(), static_cast(&cpu_found_inf_data), found_infinite.place(), static_cast(found_inf_data), sizeof(bool)); } else { cpu_found_inf_data = (*found_inf_data); } for (size_t i = 0; i < xs.size(); ++i) { auto* out = outs[i]; T* out_data = dev_ctx.template Alloc(out); int64_t num = out->numel(); if (cpu_found_inf_data) { VLOG(1) << "-- UpdateLossScaling: Find infinite grads. --"; int r = 0; r = xpu::constant(dev_ctx.x_context(), reinterpret_cast(out_data), num, XPUType(0.0)); PADDLE_ENFORCE_XDNN_SUCCESS(r, "constant"); } } if (stop_update.to()) { return; } const MT* pre_loss_scaling_data = prev_loss_scaling.data(); const int* good_in_data = in_good_steps.data(); const int* bad_in_data = in_bad_steps.data(); MT* updated_loss_scaling_data = dev_ctx.template Alloc(loss_scaling); int* good_out_data = dev_ctx.template Alloc(out_good_steps); int* bad_out_data = dev_ctx.template Alloc(out_bad_steps); int cpu_bad_in_data; int cpu_good_in_data; MT cpu_pre_loss_scaling_data; if (in_bad_steps.place().GetType() == AllocationType::XPU) { memory_utils::Copy(CPUPlace(), static_cast(&cpu_bad_in_data), in_bad_steps.place(), static_cast(bad_in_data), sizeof(int)); } else { cpu_bad_in_data = (*bad_in_data); } if (in_good_steps.place().GetType() == AllocationType::XPU) { memory_utils::Copy(CPUPlace(), static_cast(&cpu_good_in_data), in_good_steps.place(), static_cast(good_in_data), sizeof(int)); } else { cpu_good_in_data = (*good_in_data); } if (prev_loss_scaling.place().GetType() == AllocationType::XPU) { memory_utils::Copy(CPUPlace(), static_cast(&cpu_pre_loss_scaling_data), prev_loss_scaling.place(), static_cast(pre_loss_scaling_data), sizeof(MT)); } else { cpu_pre_loss_scaling_data = (*pre_loss_scaling_data); } int cpu_good_out_data = 0; int cpu_bad_out_data = 0; MT cpu_updated_loss_scaling_data = cpu_pre_loss_scaling_data; if (cpu_found_inf_data) { cpu_good_out_data = 0; cpu_bad_out_data = cpu_bad_in_data + 1; if (cpu_bad_out_data == decr_every_n_nan_or_inf) { MT new_loss_scaling = cpu_pre_loss_scaling_data * decr_ratio; cpu_updated_loss_scaling_data = (new_loss_scaling < static_cast(1)) ? (static_cast(1)) : (new_loss_scaling); cpu_bad_out_data = 0; } } else { cpu_bad_out_data = 0; cpu_good_out_data = cpu_good_in_data + 1; if (cpu_good_out_data == incr_every_n_steps) { MT new_loss_scaling = cpu_pre_loss_scaling_data * incr_ratio; cpu_updated_loss_scaling_data = (std::isfinite(new_loss_scaling)) ? new_loss_scaling : cpu_pre_loss_scaling_data; cpu_good_out_data = 0; } } // copy to device memory_utils::Copy(dev_ctx.GetPlace(), bad_out_data, CPUPlace(), &cpu_bad_out_data, sizeof(int)); memory_utils::Copy(dev_ctx.GetPlace(), good_out_data, CPUPlace(), &cpu_good_out_data, sizeof(int)); memory_utils::Copy(dev_ctx.GetPlace(), updated_loss_scaling_data, CPUPlace(), &cpu_updated_loss_scaling_data, sizeof(MT)); } template void CheckFiniteAndUnscaleKernel(const Context& dev_ctx, const std::vector& xs, const DenseTensor& scale, std::vector outs, DenseTensor* found_infinite) { using MT = typename phi::dtype::MPTypeTrait::Type; using XPUType = typename XPUTypeTrait::Type; using XPUTypeFP16 = typename XPUTypeTrait::Type; const MT* scale_data = scale.data(); bool* found_inf_data = dev_ctx.template Alloc(found_infinite); // cpy to cpu bool cpu_found_inf_data = false; // has nans or infs bool has_inf_nans = false; MT cpu_scale_data; if (scale.place().GetType() == AllocationType::XPU) { memory_utils::Copy(CPUPlace(), static_cast(&cpu_scale_data), scale.place(), static_cast(scale_data), sizeof(MT)); } else { cpu_scale_data = (*scale_data); } MT inverse_scale = 1.0 / cpu_scale_data; auto version = backends::xpu::get_xpu_version(dev_ctx.GetPlace().GetDeviceId()); if (version == backends::xpu::XPUVersion::XPU3) { int64_t num_grads = xs.size(); DenseTensor cpu_found_tensor; cpu_found_tensor.Resize({num_grads}); dev_ctx.template HostAlloc(&cpu_found_tensor); DenseTensor inf_nan_check; inf_nan_check.Resize({num_grads}); dev_ctx.template Alloc(&inf_nan_check); bool* inf_nan_check_ptr = inf_nan_check.data(); for (int64_t i = 0; i < num_grads; ++i) { const auto* x = xs[i]; auto* out = outs[i]; dev_ctx.template Alloc(out); int r = xpu::check_finite_unscale( dev_ctx.x_context(), reinterpret_cast(x->data()), reinterpret_cast(out->data()), x->numel(), inverse_scale, inf_nan_check_ptr + i); PADDLE_ENFORCE_XDNN_SUCCESS(r, "check_finite_unscale"); } memory_utils::Copy(CPUPlace(), cpu_found_tensor.data(), dev_ctx.GetPlace(), inf_nan_check.data(), num_grads * sizeof(bool)); for (int64_t i = 0; i < num_grads; ++i) { if (cpu_found_tensor.data()[i]) { cpu_found_inf_data = true; break; } } } else { for (size_t i = 0; i < xs.size(); ++i) { const auto* x = xs[i]; auto* out = outs[i]; dev_ctx.template Alloc(out); DenseTensor inf_nan_check; inf_nan_check.Resize({1}); dev_ctx.template Alloc(&inf_nan_check); if (!has_inf_nans) { int r = xpu::check_nan_or_inf( dev_ctx.x_context(), reinterpret_cast(x->data()), inf_nan_check.data(), x->numel()); PADDLE_ENFORCE_XDNN_SUCCESS(r, "check_nan_or_inf"); memory_utils::Copy(CPUPlace(), &has_inf_nans, dev_ctx.GetPlace(), inf_nan_check.data(), sizeof(bool)); } if (has_inf_nans) { cpu_found_inf_data = true; break; } DenseTensor float_x; DenseTensor float_out; if (std::is_same::value && (version == backends::xpu::XPUVersion::XPU1)) { dev_ctx.template Alloc(&float_x, x->numel() * sizeof(MT)); dev_ctx.template Alloc(&float_out, out->numel() * sizeof(MT)); int r = xpu::cast(dev_ctx.x_context(), reinterpret_cast(x->data()), float_x.data(), x->numel()); PADDLE_ENFORCE_XDNN_SUCCESS(r, "cast"); r = xpu::scale(dev_ctx.x_context(), float_x.data(), float_out.data(), x->numel(), false, inverse_scale, 0.0f); PADDLE_ENFORCE_XDNN_SUCCESS(r, "scale"); r = xpu::cast(dev_ctx.x_context(), float_out.data(), reinterpret_cast(out->data()), out->numel()); PADDLE_ENFORCE_XDNN_SUCCESS(r, "cast"); } else { int r = xpu::scale(dev_ctx.x_context(), reinterpret_cast(x->data()), reinterpret_cast(out->data()), x->numel(), false, inverse_scale, 0.0f); PADDLE_ENFORCE_XDNN_SUCCESS(r, "scale"); } } } memory_utils::Copy(dev_ctx.GetPlace(), found_inf_data, CPUPlace(), &cpu_found_inf_data, sizeof(bool)); } } // namespace phi PD_REGISTER_KERNEL(update_loss_scaling, XPU, ALL_LAYOUT, phi::UpdateLossScalingKernel, float, phi::float16) { if (kernel_key.dtype() == phi::DataType::FLOAT16) { kernel->OutputAt(1).SetDataType(phi::DataType::FLOAT32); } kernel->OutputAt(2).SetDataType(phi::DataType::INT32); kernel->OutputAt(3).SetDataType(phi::DataType::INT32); } PD_REGISTER_KERNEL(check_finite_and_unscale, XPU, ALL_LAYOUT, phi::CheckFiniteAndUnscaleKernel, float, phi::float16, phi::bfloat16) { kernel->OutputAt(1).SetDataType(phi::DataType::BOOL); }