elementwise_mod_op.cc 2.2 KB
Newer Older
P
phlrain 已提交
1
/* Copyright (c) 2019 PaddlePaddle Authors. All Rights Reserved.
2 3 4 5 6 7 8 9 10 11 12 13 14 15

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 <string>
W
wanghuancoder 已提交
16

17 18
#include "paddle/fluid/operators/elementwise/elementwise_op.h"

W
wanghuancoder 已提交
19 20 21 22 23 24 25 26 27 28 29
namespace paddle {
namespace framework {
class OpDesc;
template <typename T>
class EmptyGradOpMaker;
}  // namespace framework
namespace imperative {
class OpBase;
}  // namespace imperative
}  // namespace paddle

30 31 32 33 34
namespace paddle {
namespace operators {
class ElementwiseModOpMaker : public ElementwiseOpMaker {
 protected:
  std::string GetName() const override { return "Mod"; }
Z
zhoukunsheng 已提交
35
  std::string GetEquation() const override { return "Out = X \\\\% Y"; }
36 37 38

  void AddInputX() override {
    AddInput("X",
39 40
             "(Tensor), Tensor of any dimensions. Its dtype "
             "should be int32, int64, float32 or float64.");
41 42 43 44
  }

  void AddInputY() override {
    AddInput("Y",
45 46
             "(Tensor), Tensor of any dimensions. Its dtype "
             "should be int32, int64, float32 or float64.");
47 48 49 50 51
  }

  std::string GetOpFuntionality() const override {
    return "Mod two tensors element-wise";
  }
52 53 54 55 56
};
}  // namespace operators
}  // namespace paddle

namespace ops = paddle::operators;
57 58
REGISTER_OP_WITHOUT_GRADIENT(elementwise_mod,
                             ops::ElementwiseOp,
59 60
                             ops::ElementwiseModOpMaker,
                             ops::ElementwiseOpInplaceInferer);
61

62 63 64 65 66 67 68 69
REGISTER_OP_VERSION(elementwise_mod)
    .AddCheckpoint(
        R"ROC(Register elementwise_mod for adding the attribute of Scale_y)ROC",
        paddle::framework::compatible::OpVersionDesc().NewAttr(
            "Scale_y",
            "In order to support the function of scaling the input Y when "
            "using the operator of elementwise_mod.",
            1.0f));