-
Notifications
You must be signed in to change notification settings - Fork 5.7k
[new API] add paddle.kthvalue and paddle.Tensor.kthvalue #38386
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
ca4e795
add new api/op kthvalue
zoooo0820 05f0499
merge develop
zoooo0820 379779b
kthvalue cuda kernel to cub sorting
zoooo0820 af2e60b
merge develop
zoooo0820 2a4ae3a
merge develop
zoooo0820 4a7337e
fix example code error
zoooo0820 a8df5cc
merge develop
zoooo0820 8d015b7
throw errors instead of LOG in cuda sort
zoooo0820 1516ed5
resolve api __init__ conflict
zoooo0820 aecd65e
throw errors by Paddle_ENFORCE
zoooo0820 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,174 @@ | ||
/* 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/kthvalue_op.h" | ||
#include <memory> | ||
#include "paddle/fluid/framework/generator.h" | ||
#include "paddle/fluid/framework/op_registry.h" | ||
#include "paddle/fluid/framework/operator.h" | ||
|
||
namespace paddle { | ||
namespace operators { | ||
|
||
class KthvalueOp : public framework::OperatorWithKernel { | ||
public: | ||
using framework::OperatorWithKernel::OperatorWithKernel; | ||
|
||
void InferShape(framework::InferShapeContext* ctx) const override { | ||
OP_INOUT_CHECK(ctx->HasInput("X"), "Input", "X", "kthvalue"); | ||
OP_INOUT_CHECK(ctx->HasOutput("Out"), "Output", "Out", "kthvalue"); | ||
OP_INOUT_CHECK(ctx->HasOutput("Indices"), "Output", "Indices", "kthvalue"); | ||
auto input_dims = ctx->GetInputDim("X"); | ||
const int& dim_size = input_dims.size(); | ||
int axis = static_cast<int>(ctx->Attrs().Get<int>("axis")); | ||
PADDLE_ENFORCE_LT(axis, dim_size, | ||
paddle::platform::errors::InvalidArgument( | ||
"the axis must be [-%d, %d), but received %d .", | ||
dim_size, dim_size, axis)); | ||
PADDLE_ENFORCE_GE(axis, -dim_size, | ||
paddle::platform::errors::InvalidArgument( | ||
"the axis must be [-%d, %d), but received %d .", | ||
dim_size, dim_size, axis)); | ||
if (axis < 0) axis += dim_size; | ||
int k = static_cast<int>(ctx->Attrs().Get<int>("k")); | ||
PADDLE_ENFORCE_GE( | ||
k, 1, paddle::platform::errors::InvalidArgument( | ||
"the k in the kthvalue must >= 1, but received %d .", k)); | ||
PADDLE_ENFORCE_GE(input_dims.size(), 1, | ||
paddle::platform::errors::InvalidArgument( | ||
"input of kthvalue must have >= 1d shape")); | ||
if (ctx->IsRuntime()) { | ||
PADDLE_ENFORCE_GE( | ||
input_dims[axis], k, | ||
paddle::platform::errors::InvalidArgument( | ||
"input of kthvalue must have >= %d columns in axis of %d", k, | ||
axis)); | ||
} | ||
bool keepdim = ctx->Attrs().Get<bool>("keepdim"); | ||
std::vector<int64_t> dimvec; | ||
for (int64_t i = 0; i < axis; i++) { | ||
dimvec.emplace_back(input_dims[i]); | ||
} | ||
if (keepdim) { | ||
dimvec.emplace_back(static_cast<int64_t>(1)); | ||
} | ||
for (int64_t i = axis + 1; i < dim_size; i++) { | ||
dimvec.emplace_back(input_dims[i]); | ||
} | ||
framework::DDim dims = framework::make_ddim(dimvec); | ||
ctx->SetOutputDim("Out", dims); | ||
ctx->SetOutputDim("Indices", dims); | ||
ctx->ShareLoD("X", "Out"); | ||
ctx->ShareLoD("X", "Indices"); | ||
} | ||
|
||
protected: | ||
framework::OpKernelType GetExpectedKernelType( | ||
const framework::ExecutionContext& ctx) const override { | ||
return framework::OpKernelType( | ||
OperatorWithKernel::IndicateVarDataType(ctx, "X"), | ||
ctx.device_context()); | ||
} | ||
}; | ||
|
||
class KthvalueOpMaker : public framework::OpProtoAndCheckerMaker { | ||
public: | ||
void Make() override { | ||
AddComment(R"DOC( | ||
This operator find the k-th smallest elements in the specific axis of a Tensor. | ||
It will return the values and corresponding indices. | ||
)DOC"); | ||
AddInput("X", "(Tensor) The input of Kthvalue op"); | ||
AddOutput("Out", "(Tensor) The values of k-th smallest elements of input"); | ||
AddOutput("Indices", | ||
"(Tensor) The indices of k-th smallest elements of input"); | ||
AddAttr<int>( | ||
"k", | ||
"(int, default 1) k for k-th smallest elements to look for along " | ||
"the tensor).") | ||
.SetDefault(1); | ||
AddAttr<int>("axis", | ||
"the axis to sort and get the k indices, value." | ||
"if not set, will get k-th value in last axis.") | ||
.SetDefault(-1); | ||
AddAttr<bool>("keepdim", "Keep the dim that to reduce.").SetDefault(false); | ||
} | ||
}; | ||
|
||
class KthvalueOpGrad : public framework::OperatorWithKernel { | ||
public: | ||
using framework::OperatorWithKernel::OperatorWithKernel; | ||
void InferShape(framework::InferShapeContext* ctx) const override { | ||
PADDLE_ENFORCE_EQ( | ||
ctx->HasInput("X"), true, | ||
platform::errors::InvalidArgument("Input(X) should be not null")); | ||
PADDLE_ENFORCE_EQ( | ||
ctx->HasInput("Indices"), true, | ||
platform::errors::InvalidArgument("Input(Indices) should be not null")); | ||
PADDLE_ENFORCE_EQ(ctx->HasInput(framework::GradVarName("Out")), true, | ||
platform::errors::InvalidArgument( | ||
"Grad Input(Out) should be not null")); | ||
PADDLE_ENFORCE_EQ( | ||
ctx->HasOutput(framework::GradVarName("X")), true, | ||
platform::errors::InvalidArgument("Grad Output(X) should be not null")); | ||
|
||
auto x_dims = ctx->GetInputDim("X"); | ||
ctx->SetOutputDim(framework::GradVarName("X"), x_dims); | ||
} | ||
|
||
protected: | ||
framework::OpKernelType GetExpectedKernelType( | ||
const framework::ExecutionContext& ctx) const override { | ||
auto data_type = OperatorWithKernel::IndicateVarDataType( | ||
ctx, framework::GradVarName("Out")); | ||
return framework::OpKernelType(data_type, ctx.device_context()); | ||
} | ||
}; | ||
|
||
template <typename T> | ||
class KthvalueGradOpMaker : public framework::SingleGradOpMaker<T> { | ||
public: | ||
using framework::SingleGradOpMaker<T>::SingleGradOpMaker; | ||
|
||
protected: | ||
void Apply(GradOpPtr<T> op) const override { | ||
op->SetType("kthvalue_grad"); | ||
op->SetInput(framework::GradVarName("Out"), this->OutputGrad("Out")); | ||
op->SetInput("X", this->Input("X")); | ||
op->SetInput("Indices", this->Output("Indices")); | ||
op->SetOutput(framework::GradVarName("X"), this->InputGrad("X")); | ||
op->SetAttrMap(this->Attrs()); | ||
} | ||
}; | ||
|
||
} // namespace operators | ||
} // namespace paddle | ||
|
||
namespace ops = paddle::operators; | ||
REGISTER_OPERATOR(kthvalue, ops::KthvalueOp, ops::KthvalueOpMaker, | ||
ops::KthvalueGradOpMaker<paddle::framework::OpDesc>, | ||
ops::KthvalueGradOpMaker<paddle::imperative::OpBase>); | ||
REGISTER_OP_CPU_KERNEL( | ||
kthvalue, ops::KthvalueCPUKernel<paddle::platform::CPUPlace, float>, | ||
ops::KthvalueCPUKernel<paddle::platform::CPUPlace, double>, | ||
ops::KthvalueCPUKernel<paddle::platform::CPUPlace, int32_t>, | ||
ops::KthvalueCPUKernel<paddle::platform::CPUPlace, int64_t>); | ||
|
||
REGISTER_OPERATOR(kthvalue_grad, ops::KthvalueOpGrad); | ||
REGISTER_OP_CPU_KERNEL( | ||
kthvalue_grad, | ||
ops::KthvalueGradCPUKernel<paddle::platform::CPUPlace, float>, | ||
ops::KthvalueGradCPUKernel<paddle::platform::CPUPlace, double>, | ||
ops::KthvalueGradCPUKernel<paddle::platform::CPUPlace, int32_t>, | ||
ops::KthvalueGradCPUKernel<paddle::platform::CPUPlace, int64_t>); |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just write:
return framework::OpKernelType(OperatorWithKernel::IndicateVarDataType(ctx, "X"), ctx.GetPlace())
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done