cast_op.cc 2.7 KB
Newer Older
Y
Yu Yang 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 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"
#include "paddle/framework/op_registry.h"

namespace paddle {
namespace operators {

class CastOpProtoMaker : public framework::OpProtoAndCheckerMaker {
 public:
23
  CastOpProtoMaker(OpProto *proto, OpAttrChecker *op_checker)
Y
Yu Yang 已提交
24
      : OpProtoAndCheckerMaker(proto, op_checker) {
25 26
    AddInput("X", "The input tensor of cast op");
    AddOutput("Out", "The output tensor of cast op");
F
fengjiayi 已提交
27 28
    AddAttr<int>("out_dtype", "output data type");
    AddAttr<int>("in_dtype", "input data type");
29 30 31 32 33 34 35
    AddComment(R"DOC(
Cast Operator.

This Operator casts the input tensor to another data type and
returns tha Output Tensor.

)DOC");
Y
Yu Yang 已提交
36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
  }
};

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"));
F
fengjiayi 已提交
60 61
    grad->SetAttr("out_dtype", GetAttr("in_dtype"));
    grad->SetAttr("in_dtype", GetAttr("out_dtype"));
Y
Yu Yang 已提交
62 63 64 65 66 67 68 69
    return std::unique_ptr<framework::OpDescBind>(grad);
  }
};

}  // namespace operators
}  // namespace paddle

namespace ops = paddle::operators;
Q
QI JUN 已提交
70
using CPU = paddle::platform::CPUDeviceContext;
Y
Yu Yang 已提交
71 72 73 74 75
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>,
Y
Yu Yang 已提交
76 77
                       ops::CastOpKernel<CPU, int64_t>,
                       ops::CastOpKernel<CPU, bool>);