-
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
Cast Operator #5149
Merged
reyoung
merged 4 commits into
PaddlePaddle:develop
from
reyoung:feature/tensor_apply_visitor
Oct 28, 2017
Merged
Cast Operator #5149
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
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 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
This file contains 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
This file contains 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,73 @@ | ||
/* Copyright (c) 2016 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/operators/cast_op.h" | ||
#include "paddle/framework/op_registry.h" | ||
|
||
namespace paddle { | ||
namespace operators { | ||
|
||
class CastOpProtoMaker : public framework::OpProtoAndCheckerMaker { | ||
public: | ||
CastOpProtoMaker(framework::OpProto *proto, | ||
framework::OpAttrChecker *op_checker) | ||
: OpProtoAndCheckerMaker(proto, op_checker) { | ||
AddInput("X", "the input tensor of cast op"); | ||
AddOutput("Out", "the output tensor of cast op"); | ||
AddComment(R"DOC(Cast operator. | ||
cast the input tensor to other data type. | ||
)DOC"); | ||
AddAttr<int>("out_data_type", "output data type"); | ||
AddAttr<int>("in_data_type", "input data type"); | ||
} | ||
}; | ||
|
||
class CastOpInferShape : public framework::InferShapeBase { | ||
public: | ||
void operator()(framework::InferShapeContext *context) const override { | ||
PADDLE_ENFORCE(context->HasInput("X"), "The input of cast op must be set"); | ||
PADDLE_ENFORCE(context->HasOutput("Out"), | ||
"The output of cast op must be set"); | ||
context->SetOutputDim("Out", context->GetInputDim("X")); | ||
context->ShareLoD("X", "Out"); | ||
} | ||
}; | ||
|
||
class CastOpGradMaker : public framework::SingleGradOpDescMaker { | ||
public: | ||
using framework::SingleGradOpDescMaker::SingleGradOpDescMaker; | ||
|
||
protected: | ||
std::unique_ptr<framework::OpDescBind> Apply() const override { | ||
auto grad = new framework::OpDescBind(); | ||
grad->SetType("cast"); | ||
grad->SetInput("X", OutputGrad("Out")); | ||
grad->SetOutput("Out", InputGrad("X")); | ||
grad->SetAttr("out_data_type", GetAttr("in_data_type")); | ||
grad->SetAttr("in_data_type", GetAttr("out_data_type")); | ||
return std::unique_ptr<framework::OpDescBind>(grad); | ||
} | ||
}; | ||
|
||
} // namespace operators | ||
} // namespace paddle | ||
|
||
namespace ops = paddle::operators; | ||
using CPU = paddle::platform::CPUPlace; | ||
REGISTER_OP_WITH_KERNEL(cast, ops::CastOpGradMaker, ops::CastOpInferShape, | ||
ops::CastOpProtoMaker); | ||
REGISTER_OP_CPU_KERNEL(cast, ops::CastOpKernel<CPU, float>, | ||
ops::CastOpKernel<CPU, double>, | ||
ops::CastOpKernel<CPU, int>, | ||
ops::CastOpKernel<CPU, int64_t>); |
This file contains 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,22 @@ | ||
/* Copyright (c) 2016 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/operators/cast_op.h" | ||
|
||
template <typename T> | ||
using CastOpKernel = | ||
paddle::operators::CastOpKernel<paddle::platform::GPUPlace, T>; | ||
|
||
REGISTER_OP_GPU_KERNEL(cast, CastOpKernel<float>, CastOpKernel<double>, | ||
CastOpKernel<int>, CastOpKernel<int64_t>); |
This file contains 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,64 @@ | ||
/* Copyright (c) 2016 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. */ | ||
|
||
#pragma once | ||
|
||
#include "paddle/framework/data_type.h" | ||
#include "paddle/framework/framework.pb.h" | ||
#include "paddle/framework/op_registry.h" | ||
#include "paddle/platform/transform.h" | ||
|
||
namespace paddle { | ||
namespace operators { | ||
|
||
template <typename InT, typename OutT> | ||
struct CastOpTransformFunctor { | ||
HOSTDEVICE OutT operator()(InT in) const { return static_cast<OutT>(in); } | ||
}; | ||
|
||
template <typename Place, typename InT> | ||
struct CastOpFunctor { | ||
const framework::Tensor* in_; | ||
framework::Tensor* out_; | ||
const platform::DeviceContext& ctx_; | ||
CastOpFunctor(const framework::Tensor* in, framework::Tensor* out, | ||
const platform::DeviceContext& ctx) | ||
: in_(in), out_(out), ctx_(ctx) {} | ||
|
||
template <typename OutT> | ||
void operator()() const { | ||
auto* in_begin = in_->data<InT>(); | ||
auto numel = in_->numel(); | ||
auto* in_end = in_begin + numel; | ||
auto* out_begin = out_->mutable_data<OutT>(ctx_.GetPlace()); | ||
platform::Transform<Place> trans; | ||
trans(ctx_, in_begin, in_end, out_begin, | ||
CastOpTransformFunctor<InT, OutT>()); | ||
} | ||
}; | ||
|
||
template <typename Place, typename InT> | ||
class CastOpKernel : public framework::OpKernel<InT> { | ||
public: | ||
void Compute(const framework::ExecutionContext& context) const override { | ||
auto* in = context.Input<framework::Tensor>("X"); | ||
auto* out = context.Output<framework::Tensor>("Out"); | ||
framework::VisitDataType( | ||
static_cast<framework::DataType>(context.Attr<int>("out_data_type")), | ||
CastOpFunctor<Place, InT>(in, out, context.device_context())); | ||
} | ||
}; | ||
|
||
} // namespace operators | ||
} // namespace paddle |
This file contains 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
This file contains 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,26 @@ | ||
import op_test | ||
import unittest | ||
import numpy as np | ||
import paddle.v2.framework.core as core | ||
|
||
|
||
class TestCastOp(op_test.OpTest): | ||
def setUp(self): | ||
ipt = np.random.random(size=[10, 10]) | ||
self.inputs = {'X': ipt.astype('float32')} | ||
self.outputs = {'Out': ipt.astype('float64')} | ||
self.attrs = { | ||
'in_data_type': int(core.DataType.FP32), | ||
'out_data_type': int(core.DataType.FP64) | ||
} | ||
self.op_type = 'cast' | ||
|
||
def test_check_output(self): | ||
self.check_output() | ||
|
||
def test_grad(self): | ||
self.check_grad(['X'], ['Out']) | ||
|
||
|
||
if __name__ == '__main__': | ||
unittest.main() |
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.
Please shared lod also