/* 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/fluid/operators/dropout_op.h" #include #include #include "paddle/fluid/platform/device/device_wrapper.h" namespace paddle { namespace operators { #ifdef PADDLE_WITH_XPU template class DropoutXPUKernel : public framework::OpKernel { using XPUTyp = typename XPUTypeTrait::Type; public: void Compute(const framework::ExecutionContext& context) const override { auto* x = context.Input("X"); auto* y = context.Output("Out"); const auto* x_data = x->data(); auto* y_data = y->mutable_data(context.GetPlace()); float dropout_prob = context.Attr("dropout_prob"); auto dropout_implementation = context.Attr("dropout_implementation"); auto& dev_ctx = context.template device_context(); PADDLE_ENFORCE_EQ(!context.HasInput("Seed"), true, platform::errors::InvalidArgument( ("Input(Seed) not supported on XPU"))); int is_upscale = (dropout_implementation == "upscale_in_train"); if (!context.Attr("is_test")) { std::random_device rnd; // int seed = (context.Attr("fix_seed")) ? // int(context.Attr("seed")) : (rnd()); int seed = 0; if (context.Attr("fix_seed") == true) { seed = static_cast(context.Attr("seed")); } else { seed = rnd(); } auto* mask = context.Output("Mask"); auto* mask_data = mask->mutable_data(context.GetPlace()); // Special case when dropout_prob is 1.0 if (dropout_prob == 1.0f) { int r = xpu::constant(dev_ctx.x_context(), reinterpret_cast(y_data), y->numel(), XPUTyp(0)); PADDLE_ENFORCE_XDNN_SUCCESS(r, "constant "); r = xpu::constant(dev_ctx.x_context(), reinterpret_cast(mask_data), mask->numel(), XPUTyp(0)); PADDLE_ENFORCE_XDNN_SUCCESS(r, "constant "); return; } int r = xpu::dropout(dev_ctx.x_context(), reinterpret_cast(x->data()), reinterpret_cast(y->data()), reinterpret_cast(mask_data), seed, mask->numel(), is_upscale, dropout_prob); PADDLE_ENFORCE_XDNN_SUCCESS(r, "dropout "); } else { float scale = (is_upscale) ? (1.0) : (static_cast(1.0f - dropout_prob)); int r = xpu::scale( dev_ctx.x_context(), reinterpret_cast(x_data), reinterpret_cast(y_data), x->numel(), false, scale, 0.0f); PADDLE_ENFORCE_XDNN_SUCCESS(r, "scale "); } } }; template class DropoutGradXPUKernel : public framework::OpKernel { using XPUType = typename XPUTypeTrait::Type; public: void Compute(const framework::ExecutionContext& context) const override { PADDLE_ENFORCE_EQ(!context.Attr("is_test"), true, platform::errors::InvalidArgument( "GradOp is only callable when is_test is false")); auto* grad_x = context.Output(framework::GradVarName("X")); auto* grad_y = context.Input(framework::GradVarName("Out")); auto* mask = context.Input("Mask"); grad_x->mutable_data(context.GetPlace()); auto& dev_ctx = context.template device_context(); auto& dropout_implementation = context.Attr("dropout_implementation"); float dropout_prob = context.Attr("dropout_prob"); const T* mask_data = mask->data(); if (dropout_implementation != "upscale_in_train") { int r = xpu::mul(dev_ctx.x_context(), reinterpret_cast(grad_y->data()), reinterpret_cast(mask_data), reinterpret_cast(grad_x->data()), grad_y->numel()); PADDLE_ENFORCE_XDNN_SUCCESS(r, "mul "); return; } auto version = dev_ctx.xpu_version(); if (version == pten::backends::xpu::XPUVersion::XPU1) { xpu::ctx_guard RAII_GUARD(dev_ctx.x_context()); XPUType* mask_new = RAII_GUARD.alloc_l3_or_gm(mask->numel()); float scale = (dropout_prob == 1.0f) ? (1.0f) : (1.0f / (1.0f - dropout_prob)); int r = xpu::scale(dev_ctx.x_context(), reinterpret_cast(mask->data()), reinterpret_cast(mask_new), mask->numel(), false, scale, 0.0f); PADDLE_ENFORCE_XDNN_SUCCESS(r, "scale "); r = xpu::mul(dev_ctx.x_context(), reinterpret_cast(grad_y->data()), reinterpret_cast(mask_new), reinterpret_cast(grad_x->data()), grad_y->numel()); PADDLE_ENFORCE_XDNN_SUCCESS(r, "mul "); } else { int r = xpu::dropout_grad(dev_ctx.x_context(), reinterpret_cast(mask->data()), reinterpret_cast(grad_y->data()), reinterpret_cast(grad_x->data()), dropout_prob, grad_y->numel()); PADDLE_ENFORCE_XDNN_SUCCESS(r, "dropout_grad "); } } }; } // namespace operators } // namespace paddle namespace ops = paddle::operators; namespace plat = paddle::platform; REGISTER_OP_XPU_KERNEL( dropout, ops::DropoutXPUKernel, ops::DropoutXPUKernel); REGISTER_OP_XPU_KERNEL( dropout_grad, ops::DropoutGradXPUKernel, ops::DropoutGradXPUKernel); #endif