/* 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/take_along_axis_op.h" #include #include #include #include "paddle/fluid/framework/ddim.h" #include "paddle/fluid/framework/op_version_registry.h" namespace paddle { namespace operators { class TakeAlongAxisOp : public framework::OperatorWithKernel { public: using framework::OperatorWithKernel::OperatorWithKernel; void InferShape(framework::InferShapeContext* ctx) const override { PADDLE_ENFORCE_EQ( ctx->HasInput("Input"), true, platform::errors::InvalidArgument( "Input(Input) of TakeAlongAxisOp should not be null.")); PADDLE_ENFORCE_EQ( ctx->HasInput("Index"), true, platform::errors::InvalidArgument( "Input(Index) of TakeAlongAxisOp should not be null.")); PADDLE_ENFORCE_EQ( ctx->HasOutput("Result"), true, platform::errors::InvalidArgument( "Output(Result) of TakeAlongAxisOp should not be null.")); auto input_dim = ctx->GetInputDim("Input"); auto index_dim = ctx->GetInputDim("Index"); PADDLE_ENFORCE_GT(input_dim.size(), 0, platform::errors::InvalidArgument( "Dimension of the input(Input) of TakeAlongAxisOp " "should be greater than 0.", input_dim)); PADDLE_ENFORCE_GT(index_dim.size(), 0, platform::errors::InvalidArgument( "Dimension of the input(Index) of TakeAlongAxisOp " "should be greater than 0.", index_dim)); ctx->SetOutputDim("Result", index_dim); } protected: framework::OpKernelType GetExpectedKernelType( const framework::ExecutionContext& ctx) const override { return framework::OpKernelType( OperatorWithKernel::IndicateVarDataType(ctx, "Input"), ctx.device_context()); } framework::OpKernelType GetKernelTypeForVar( const std::string& var_name, const framework::Tensor& tensor, const framework::OpKernelType& expected_kernel_type) const override { return framework::OpKernelType(expected_kernel_type.data_type_, tensor.place(), tensor.layout()); } }; class TakeAlongAxisOpMaker : public framework::OpProtoAndCheckerMaker { public: void Make() override { AddInput("Input", "The input tensor of TakeAlongAxisOp"); AddInput("Index", "The index tensor of TakeAlongAxisOp"); AddOutput("Result", "The result tensor of TakeAlongAxisOp"); AddAttr("Axis", "The Tensor which contains the axis that we do TakeAlongAxis " "operation."); AddComment(R"DOC( Take_along_axis Operator.) )DOC"); } }; class TakeAlongAxisGradOp : public framework::OperatorWithKernel { public: using framework::OperatorWithKernel::OperatorWithKernel; void InferShape(framework::InferShapeContext* ctx) const override { ctx->SetOutputDim(framework::GradVarName("Input"), ctx->GetInputDim("Input")); } protected: framework::OpKernelType GetExpectedKernelType( const framework::ExecutionContext& ctx) const override { return framework::OpKernelType(OperatorWithKernel::IndicateVarDataType( ctx, framework::GradVarName("Result")), ctx.device_context()); } framework::OpKernelType GetKernelTypeForVar( const std::string& var_name, const framework::Tensor& tensor, const framework::OpKernelType& expected_kernel_type) const override { return framework::OpKernelType(expected_kernel_type.data_type_, tensor.place(), tensor.layout()); } }; template class TakeAlongAxisGradOpMaker : public framework::SingleGradOpMaker { public: using framework::SingleGradOpMaker::SingleGradOpMaker; protected: void Apply(GradOpPtr op) const override { op->SetType("take_along_axis_grad"); op->SetInput("Index", this->Input("Index")); op->SetInput("Input", this->Input("Input")); op->SetInput(framework::GradVarName("Result"), this->OutputGrad("Result")); op->SetOutput(framework::GradVarName("Input"), this->InputGrad("Input")); op->SetAttrMap(this->Attrs()); } }; } // namespace operators } // namespace paddle namespace ops = paddle::operators; REGISTER_OPERATOR(take_along_axis, ops::TakeAlongAxisOp, ops::TakeAlongAxisOpMaker, ops::TakeAlongAxisGradOpMaker, ops::TakeAlongAxisGradOpMaker); REGISTER_OPERATOR(take_along_axis_grad, ops::TakeAlongAxisGradOp); REGISTER_OP_CPU_KERNEL(take_along_axis, ops::TakeAlongAxisOpKernel, ops::TakeAlongAxisOpKernel, ops::TakeAlongAxisOpKernel, ops::TakeAlongAxisOpKernel, ops::TakeAlongAxisOpKernel); REGISTER_OP_CPU_KERNEL(take_along_axis_grad, ops::TakeAlongAxisGradOpKernel, ops::TakeAlongAxisGradOpKernel, ops::TakeAlongAxisGradOpKernel, ops::TakeAlongAxisGradOpKernel, ops::TakeAlongAxisGradOpKernel);