/* 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/operators/concat_op.h" #include "paddle/fluid/operators/npu_op_runner.h" namespace paddle { namespace operators { template class ConcatNPUKernel : public framework::OpKernel { public: void Compute(const framework::ExecutionContext& ctx) const override { auto ins = ctx.MultiInput("X"); framework::LoDTensor* out = ctx.Output("Out"); PADDLE_ENFORCE_NOT_NULL(ins[0], platform::errors::NotFound( "The first input tensor is not initalized.")); auto axis = ctx.Attr("axis"); if (ctx.HasInput("AxisTensor")) { PADDLE_THROW(platform::errors::NotFound( "The AxisTensor is not supported on NPU now.")); } axis = ComputeAxis(static_cast(axis), static_cast(ins[0]->dims().size())); auto place = ctx.GetPlace(); out->mutable_data(place); std::vector inputs; std::vector names; for (size_t i = 0; i < ins.size(); ++i) { if (ins[i] && ins[i]->numel() > 0) { inputs.push_back(*ins[i]); names.push_back("x" + std::to_string(i)); } else { continue; } } auto stream = ctx.template device_context() .stream(); auto runner = NpuOpRunner( "ConcatD", {inputs}, {*out}, {{"concat_dim", axis}, {"N", static_cast(inputs.size())}}); runner.AddInputNames(names); runner.Run(stream); } }; template class ConcatGradNPUKernel : public framework::OpKernel { public: void Compute(const framework::ExecutionContext& ctx) const override { auto* out_grad = ctx.Input(framework::GradVarName("Out")); auto ins = ctx.MultiInput("X"); auto out_var_names = ctx.OutputNames(framework::GradVarName("X")); auto outs = ctx.MultiOutput(framework::GradVarName("X")); { auto dx = outs; auto x = ins; for (size_t i = 0; i < dx.size(); ++i) { if (dx[i] != nullptr) { dx[i]->set_lod(x[i]->lod()); } } } PADDLE_ENFORCE_NOT_NULL(ins[0], platform::errors::NotFound( "The first input tensor is not initalized.")); auto axis = ctx.Attr("axis"); axis = ComputeAxis(static_cast(axis), static_cast(ins[0]->dims().size())); // get output tensor that the name is not kEmptyVarName std::vector outputs; std::vector sizes; for (size_t j = 0; j < outs.size(); ++j) { if (out_var_names[j] != framework::kEmptyVarName && outs[j]->numel() != 0UL) { outs[j]->mutable_data(ctx.GetPlace()); outputs.push_back(*outs[j]); sizes.push_back(outs[j]->dims()[axis]); } } auto runner = NpuOpRunner("SplitVD", {*out_grad}, outputs, {{"split_dim", axis}, {"size_splits", sizes}, {"num_split", static_cast(outputs.size())}}); auto stream = ctx.template device_context() .stream(); runner.Run(stream); } }; } // namespace operators } // namespace paddle namespace ops = paddle::operators; REGISTER_OP_NPU_KERNEL(concat, ops::ConcatNPUKernel, ops::ConcatNPUKernel, ops::ConcatNPUKernel); REGISTER_OP_NPU_KERNEL(concat_grad, ops::ConcatGradNPUKernel, ops::ConcatGradNPUKernel, ops::ConcatGradNPUKernel);