/* Copyright (c) 2021 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/framework/op_registry.h" #include "paddle/fluid/operators/utils.h" #include "paddle/fluid/platform/device/npu/npu_op_runner.h" namespace paddle { namespace operators { template class FillConstantNPUKernel : public framework::OpKernel { public: void Compute(const framework::ExecutionContext &ctx) const override { auto data_type = static_cast(ctx.Attr("dtype")); auto str_value = ctx.Attr("str_value"); auto float_value = ctx.Attr("value"); auto *out_var = ctx.Output("Out"); auto stream = ctx.template device_context() .stream(); T value; if (str_value.empty()) { value = static_cast(float_value); } else { // handle NaN/Inf first, which cannot be read from stream. if (str_value == "inf") { value = static_cast(std::numeric_limits::infinity()); } else if (str_value == "-inf") { value = static_cast(-std::numeric_limits::infinity()); } else if (str_value == "nan") { value = static_cast(std::numeric_limits::quiet_NaN()); } else { std::stringstream convert_stream(str_value); if (std::is_same::value) { int64_t tmp_value; convert_stream >> tmp_value; value = static_cast(tmp_value); } else { double tmp_value; convert_stream >> tmp_value; value = static_cast(tmp_value); } } } auto shape = GetShape(ctx); out_var->mutable_data(shape, ctx.GetPlace()); if (data_type != framework::proto::VarType::BOOL) { Tensor tensor_value(framework::TransToPhiDataType(data_type)); tensor_value.mutable_data({1}, ctx.GetPlace()); FillNpuTensorWithConstant(&tensor_value, value); NpuOpRunner runner; #if (CANN_VERSION_CODE >= 503003 && CANN_VERSION_CODE < 504000) runner.SetType("FillD") .AddInput(tensor_value) .AddOutput(*out_var) .AddAttrs( {{ "dims", phi::vectorize(shape) }}) .Run(stream); #else runner.SetType("Fill") .AddInput(phi::vectorize(shape)) .AddInput(tensor_value) .AddOutput(*out_var) .Run(stream); #endif } else { const auto &dev_ctx = ctx.template device_context(); auto op_func = [&shape, &value]( const std::vector &inputs, const std::vector &outputs, const NPUAttributeMap &attrs, const platform::NPUDeviceContext &dev_ctx) { Tensor tensor_value; tensor_value.mutable_data({1}, dev_ctx.GetPlace()); FillNpuTensorWithConstant(&tensor_value, static_cast(value)); NpuOpRunner runner; runner.SetType("Fill") .AddInput(phi::vectorize(shape)) .AddInput(tensor_value) .AddOutput(outputs[0]) .Run(dev_ctx.stream()); }; NpuOpRunner::TypeAdapter({}, {*out_var}, {}, dev_ctx, op_func, {}, {framework::proto::VarType::UINT8}); } } }; } // namespace operators } // namespace paddle REGISTER_OP_NPU_KERNEL( fill_constant, paddle::operators::FillConstantNPUKernel, paddle::operators::FillConstantNPUKernel, paddle::operators::FillConstantNPUKernel, #ifdef PADDLE_WITH_ASCEND_INT64 paddle::operators::FillConstantNPUKernel, #endif paddle::operators::FillConstantNPUKernel);