-
Notifications
You must be signed in to change notification settings - Fork 5.6k
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
Add Bilinear Tensor Product operator. #5014
Changes from 3 commits
611ee68
3ae1424
f5cb52c
4726927
44e1ac3
5cf8204
5f99ae9
ab41648
665eb01
0a6262d
c5d7107
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,159 @@ | ||
/* Copyright (c) 2016 PaddlePaddle Authors. All Rights Reserve. | ||
|
||
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/operators/bilinear_tensor_product_op.h" | ||
|
||
namespace paddle { | ||
namespace operators { | ||
|
||
using framework::Tensor; | ||
|
||
class BilinearTensorProductOp : public framework::OperatorWithKernel { | ||
public: | ||
using framework::OperatorWithKernel::OperatorWithKernel; | ||
|
||
protected: | ||
void InferShape(framework::InferShapeContext* ctx) const override { | ||
PADDLE_ENFORCE(ctx->HasInput("X"), "Input(X) should not be null."); | ||
PADDLE_ENFORCE(ctx->HasInput("Y"), "Input(Y) should not be null."); | ||
PADDLE_ENFORCE(ctx->HasInput("Weight"), | ||
"Input(Weight) should not be null."); | ||
PADDLE_ENFORCE(ctx->HasOutput("Out"), "Output(Out) should not be null."); | ||
auto x_dims = ctx->GetInputDim("X"); | ||
auto y_dims = ctx->GetInputDim("Y"); | ||
auto weight_dims = ctx->GetInputDim("Weight"); | ||
|
||
PADDLE_ENFORCE_EQ(x_dims.size(), 2, "The input X must be a 2D Tensor."); | ||
PADDLE_ENFORCE_EQ(y_dims.size(), 2, "The input Y must be a 2D Tensor."); | ||
PADDLE_ENFORCE_EQ(weight_dims.size(), 3, | ||
"The input Weight must be a 3D tensor."); | ||
PADDLE_ENFORCE_GT(weight_dims[0], 0, | ||
"The first dimension of Weight must be larger than 0."); | ||
PADDLE_ENFORCE_GT(weight_dims[1], 0, | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 用PADDLE_ENFORCE~ There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Done |
||
"The second dimension of Weight must be larger than 0."); | ||
PADDLE_ENFORCE_GT(weight_dims[2], 0, | ||
"The third dimension of Weight must be larger than 0."); | ||
PADDLE_ENFORCE_EQ(x_dims[0], y_dims[0], | ||
"The first dimension(batch_size) of X must be " | ||
"equal with the first dimension of the Y."); | ||
PADDLE_ENFORCE_EQ(x_dims[1], weight_dims[1], | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. be equal to There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Done |
||
"The second dimension of X must be equal with the second " | ||
"dimension of the Weight."); | ||
PADDLE_ENFORCE_EQ(y_dims[1], weight_dims[2], | ||
"The second dimension of Y must be equal with the third " | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. be equal to There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Done |
||
"dimension of the Weight."); | ||
|
||
if (ctx->HasInput("Bias")) { | ||
auto bias_dims = ctx->GetInputDim("Bias"); | ||
PADDLE_ENFORCE_EQ(bias_dims.size(), 2, | ||
"The input Bias must have 2 dimensions."); | ||
PADDLE_ENFORCE_EQ(bias_dims[0], 1, | ||
"The first dimention of input Bias must be 1."); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. merge line 59 ~ 61 PADDLE_ENFORCE(bias_dims.size() == 2UL && bias_dims[1] == 1UL,
"The Input(bias) should be a 2-D tensor with the 2nd "
"dimensions fixed to 1 (a row vector).") There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Done |
||
PADDLE_ENFORCE_EQ(bias_dims[1], weight_dims[0], | ||
"The second dimension of Bias must be equal with the " | ||
"first dimension of the Weight."); | ||
} | ||
|
||
ctx->SetOutputDim("Out", {x_dims[0], weight_dims[0]}); | ||
ctx->ShareLoD("X", /*->*/ "Out"); | ||
} | ||
}; | ||
|
||
class BilinearTensorProductOpMaker : public framework::OpProtoAndCheckerMaker { | ||
public: | ||
BilinearTensorProductOpMaker(framework::OpProto* proto, | ||
framework::OpAttrChecker* op_checker) | ||
: OpProtoAndCheckerMaker(proto, op_checker) { | ||
AddInput("X", "The first input of BilinearTensorProduct op"); | ||
AddInput("Y", "The second input of BilinearTensorProduct op"); | ||
AddInput("Weight", "The input weight of BilinearTensorProduct op"); | ||
AddInput("Bias", "The input bias of BilinearTensorProduct op") | ||
.AsDispensable(); | ||
AddOutput("Out", "The output of BilinearTensorProduct op"); | ||
AddComment(R"DOC( | ||
Bilinear Tensor Product operator. | ||
Given input X and Y, a 3D tensor weight, and bias. Each column of the | ||
output is computed by one slice i = 1, . . . , k of the tensor: | ||
|
||
M = (X W_i) \cdot Y | ||
Out_i = \sum_i {M_i} + Bias_i | ||
|
||
)DOC"); | ||
} | ||
}; | ||
|
||
class BilinearTensorProductOpGrad : public framework::OperatorWithKernel { | ||
public: | ||
using framework::OperatorWithKernel::OperatorWithKernel; | ||
|
||
protected: | ||
void InferShape(framework::InferShapeContext* ctx) const override { | ||
PADDLE_ENFORCE(ctx->HasInput("X"), "Input(X) should not be null"); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Input(X) should not be null 注释的后面加上句号~ 下同。 There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Done |
||
PADDLE_ENFORCE(ctx->HasInput("Y"), "Input(Y) should not be null"); | ||
PADDLE_ENFORCE(ctx->HasInput("Weight"), "Input(Weight) should not be null"); | ||
PADDLE_ENFORCE(ctx->HasInput(framework::GradVarName("Out")), | ||
"Input (Out@GRAD) should not be null"); | ||
auto x_dims = ctx->GetInputDim("X"); | ||
auto y_dims = ctx->GetInputDim("Y"); | ||
auto weight_dims = ctx->GetInputDim("Weight"); | ||
auto out_dims = ctx->GetInputDim(framework::GradVarName("Out")); | ||
|
||
PADDLE_ENFORCE_EQ(out_dims.size(), 2, "The Out@GRAD must be a 2D Tensor."); | ||
PADDLE_ENFORCE_EQ( | ||
x_dims[0], out_dims[0], | ||
"The first dimension(batch_size) of Out@GRAD must be equal with " | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. be equal to There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Done |
||
"the first dimension of the X."); | ||
PADDLE_ENFORCE_EQ(weight_dims[0], out_dims[1], | ||
"The second dimension of Out@GRAD must be equal with " | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. be equal to There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Done |
||
"the third dimension of the Weight."); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Weight --> Input(Weight) There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Done |
||
|
||
if (ctx->HasInput("Bias")) { | ||
auto bias_dims = ctx->GetInputDim("Bias"); | ||
PADDLE_ENFORCE_EQ(bias_dims[1], out_dims[1], | ||
"The second dimension of Bias must be equal with " | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. be equal to There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Done |
||
"the second dimension of the Out@GRAD."); | ||
auto bias_grad_name = framework::GradVarName("Bias"); | ||
if (ctx->HasOutput(bias_grad_name)) | ||
ctx->SetOutputDim(bias_grad_name, bias_dims); | ||
} | ||
|
||
auto x_grad_name = framework::GradVarName("X"); | ||
auto y_grad_name = framework::GradVarName("Y"); | ||
auto weight_grad_name = framework::GradVarName("Weight"); | ||
|
||
if (ctx->HasOutput(x_grad_name)) { | ||
ctx->SetOutputDim(x_grad_name, x_dims); | ||
} | ||
if (ctx->HasOutput(y_grad_name)) { | ||
ctx->SetOutputDim(y_grad_name, y_dims); | ||
} | ||
if (ctx->HasOutput(weight_grad_name)) { | ||
ctx->SetOutputDim(weight_grad_name, weight_dims); | ||
} | ||
} | ||
}; | ||
|
||
} // namespace operators | ||
} // namespace paddle | ||
|
||
namespace ops = paddle::operators; | ||
REGISTER_OP(bilinear_tensor_product, ops::BilinearTensorProductOp, | ||
ops::BilinearTensorProductOpMaker, bilinear_tensor_product_grad, | ||
ops::BilinearTensorProductOpGrad); | ||
REGISTER_OP_CPU_KERNEL( | ||
bilinear_tensor_product, | ||
ops::BilinearTensorProductKernel<paddle::platform::CPUPlace, float>); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. register a kernel support the double type. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Done |
||
REGISTER_OP_CPU_KERNEL( | ||
bilinear_tensor_product_grad, | ||
ops::BilinearTensorProductGradKernel<paddle::platform::CPUPlace, float>); |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,99 @@ | ||
/* Copyright (c) 2016 PaddlePaddle Authors. All Rights Reserve. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. License的缩进有问题。按照accuracy_op.h 。 There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Done |
||
|
||
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. */ | ||
|
||
#define EIGEN_USE_GPU | ||
#include "paddle/operators/bilinear_tensor_product_op.h" | ||
|
||
namespace paddle { | ||
namespace operators { | ||
|
||
template <typename Place, typename T> | ||
class BilinearTensorProductCUDAKernel : public framework::OpKernel<T> { | ||
public: | ||
void Compute(const framework::ExecutionContext& ctx) const override { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 这里GPU下为什么需要从CPU拷贝输入输出呢?不管是Eigen还是矩阵乘法都有GPU下的实现。 There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 已经做了修正,不需要从CPU进行拷贝。 |
||
auto* x = ctx.Input<Tensor>("X"); | ||
auto* y = ctx.Input<Tensor>("Y"); | ||
auto* weight = ctx.Input<Tensor>("Weight"); | ||
auto* bias = ctx.Input<Tensor>("Bias"); | ||
auto* out = ctx.Output<Tensor>("Out"); | ||
out->mutable_data<T>(ctx.GetPlace()); | ||
|
||
auto y_mat = EigenMatrix<T>::From(*y); | ||
auto batch_size = x->dims()[0]; | ||
auto weight_dims = weight->dims(); | ||
|
||
auto place = ctx.GetEigenDevice<Place>(); | ||
auto cpu_place = ctx.GetEigenDevice<platform::CPUPlace>(); | ||
|
||
// Copy the output to cpu. | ||
Tensor output_cpu; | ||
output_cpu.CopyFrom(*out, platform::CPUPlace(), ctx.device_context()); | ||
auto* output_cpu_ptr = output_cpu.data<T>(); | ||
auto output_cpu_mat = EigenMatrix<T>::From(output_cpu); | ||
|
||
// Create the temporary variables. | ||
Tensor left_mul; | ||
left_mul.mutable_data<T>(framework::make_ddim({batch_size, weight_dims[2]}), | ||
ctx.GetPlace()); | ||
auto left_mul_mat = EigenMatrix<T>::From(left_mul); | ||
Tensor output_col; | ||
output_col.mutable_data<T>(framework::make_ddim({batch_size}), | ||
ctx.GetPlace()); | ||
auto output_col_vec = EigenVector<T>::From(output_col); | ||
|
||
for (size_t i = 0; i < weight_dims[0]; ++i) { | ||
Tensor weight_mat = weight->Slice(i, i + 1).Resize( | ||
framework::make_ddim({weight_dims[1], weight_dims[2]})); | ||
math::gemm<Place, T>(ctx.device_context(), CblasNoTrans, CblasNoTrans, | ||
batch_size, weight_dims[2], weight_dims[1], 1, | ||
x->data<T>(), weight_mat.data<T>(), 0, | ||
left_mul.data<T>()); | ||
output_col_vec.device(place) = | ||
(left_mul_mat * y_mat).sum(Eigen::DSizes<int, 1>(1)); | ||
|
||
// Copy the output_col to cpu. | ||
Tensor output_col_cpu; | ||
output_col_cpu.CopyFrom(output_col, platform::CPUPlace(), | ||
ctx.device_context()); | ||
auto* output_col_ptr = output_col_cpu.data<T>(); | ||
|
||
for (size_t j = 0; j < batch_size; ++j) { | ||
output_cpu_ptr[i + j * weight_dims[0]] = output_col_ptr[j]; | ||
} | ||
} | ||
|
||
if (bias) { | ||
// Copy the bias to cpu. | ||
Tensor bias_cpu; | ||
bias_cpu.CopyFrom(*bias, platform::CPUPlace(), ctx.device_context()); | ||
auto bias_vec = EigenMatrix<T>::From(bias_cpu); | ||
Eigen::DSizes<int, 2> bcast(batch_size, 1); | ||
output_cpu_mat.device(cpu_place) = | ||
bias_vec.broadcast(bcast) + output_cpu_mat; | ||
} | ||
|
||
// Copy the output to gpu. | ||
out->CopyFrom(output_cpu, platform::GPUPlace(), ctx.device_context()); | ||
} | ||
}; | ||
} // namespace operators | ||
} // namespace paddle | ||
|
||
namespace ops = paddle::operators; | ||
REGISTER_OP_GPU_KERNEL( | ||
bilinear_tensor_product, | ||
ops::BilinearTensorProductCUDAKernel<paddle::platform::GPUPlace, float>); | ||
REGISTER_OP_GPU_KERNEL( | ||
bilinear_tensor_product_grad, | ||
ops::BilinearTensorProductGradKernel<paddle::platform::GPUPlace, float>); |
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.
2UL, 39~45,下同。
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