cast_op.cc 3.4 KB
Newer Older
1
/* Copyright (c) 2016 PaddlePaddle Authors. All Rights Reserved.
Y
Yu Yang 已提交
2

L
Luo Tao 已提交
3 4 5
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
Y
Yu Yang 已提交
6

L
Luo Tao 已提交
7
    http://www.apache.org/licenses/LICENSE-2.0
Y
Yu Yang 已提交
8

L
Luo Tao 已提交
9 10 11 12 13
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. */
Y
Yu Yang 已提交
14

Y
Yi Wang 已提交
15
#include "paddle/fluid/operators/cast_op.h"
T
tensor-tang 已提交
16
#include <memory>
Y
Yi Wang 已提交
17
#include "paddle/fluid/framework/op_registry.h"
K
Kexin Zhao 已提交
18
#include "paddle/fluid/platform/float16.h"
Y
Yu Yang 已提交
19 20 21 22 23 24

namespace paddle {
namespace operators {

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

This Operator casts the input tensor to another data type and
T
tensor-tang 已提交
34 35
returns the Output Tensor. It's meaningless if the output dtype equals
the input dtype, but it's fine if you do so.
36 37

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

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:
Y
Yu Yang 已提交
57 58
  std::unique_ptr<framework::OpDesc> Apply() const override {
    auto grad = new framework::OpDesc();
Y
Yu Yang 已提交
59 60 61
    grad->SetType("cast");
    grad->SetInput("X", OutputGrad("Out"));
    grad->SetOutput("Out", InputGrad("X"));
F
fengjiayi 已提交
62 63
    grad->SetAttr("out_dtype", GetAttr("in_dtype"));
    grad->SetAttr("in_dtype", GetAttr("out_dtype"));
Y
Yu Yang 已提交
64
    return std::unique_ptr<framework::OpDesc>(grad);
Y
Yu Yang 已提交
65 66 67
  }
};

Q
QI JUN 已提交
68 69 70 71 72 73 74 75 76 77 78 79 80 81
class CastOp : public framework::OperatorWithKernel {
 public:
  using framework::OperatorWithKernel::OperatorWithKernel;

 protected:
  framework::OpKernelType GetExpectedKernelType(
      const framework::ExecutionContext &ctx) const override {
    framework::OpKernelType kt = OperatorWithKernel::GetExpectedKernelType(ctx);
    // CastOp kernel's device type is decided by input tensor place
    kt.place_ = ctx.Input<framework::LoDTensor>("X")->place();
    return kt;
  }
};

Y
Yu Yang 已提交
82 83 84 85
}  // namespace operators
}  // namespace paddle

namespace ops = paddle::operators;
Q
QI JUN 已提交
86
using CPU = paddle::platform::CPUDeviceContext;
Q
QI JUN 已提交
87 88
REGISTER_OPERATOR(cast, ops::CastOp, ops::CastOpGradMaker,
                  ops::CastOpInferShape, ops::CastOpProtoMaker);
Y
Yu Yang 已提交
89 90 91
REGISTER_OP_CPU_KERNEL(cast, ops::CastOpKernel<CPU, float>,
                       ops::CastOpKernel<CPU, double>,
                       ops::CastOpKernel<CPU, int>,
Y
Yu Yang 已提交
92
                       ops::CastOpKernel<CPU, int64_t>,
K
Kexin Zhao 已提交
93
                       ops::CastOpKernel<CPU, bool>,
F
fengjiayi 已提交
94
                       ops::CastOpKernel<CPU, uint8_t>,
K
Kexin Zhao 已提交
95
                       ops::CastOpKernel<CPU, paddle::platform::float16>);