op_registry_test.cc 6.9 KB
Newer Older
1 2
#include "paddle/framework/op_registry.h"
#include <gtest/gtest.h>
Q
Qiao Longfei 已提交
3

4 5
namespace pd = paddle::framework;

6 7
namespace paddle {
namespace framework {
Y
Yu Yang 已提交
8
class CosineOp : public OperatorBase {
9
 public:
10
  DEFINE_OPERATOR_CTOR(CosineOp, OperatorBase);
Y
Yu Yang 已提交
11
  void Run(const Scope& scope,
Y
Yu Yang 已提交
12
           const platform::DeviceContext& dev_ctx) const override {}
Y
Yu Yang 已提交
13
  void InferShape(const Scope& scope) const override {}
14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
};

class CosineOpProtoAndCheckerMaker : public OpProtoAndCheckerMaker {
 public:
  CosineOpProtoAndCheckerMaker(OpProto* proto, OpAttrChecker* op_checker)
      : OpProtoAndCheckerMaker(proto, op_checker) {
    AddInput("input", "input of cosine op");
    AddOutput("output", "output of cosine op");
    AddAttr<float>("scale", "scale of cosine op")
        .SetDefault(1.0)
        .LargerThan(0.0);
    AddComment("This is cos op");
  }
};

Y
Yu Yang 已提交
29 30
class MyTestOp : public OperatorBase {
 public:
31
  DEFINE_OPERATOR_CTOR(MyTestOp, OperatorBase);
Y
Yu Yang 已提交
32 33
  void InferShape(const Scope& scope) const override {}
  void Run(const Scope& scope,
Y
Yu Yang 已提交
34
           const platform::DeviceContext& dev_ctx) const override {}
35 36 37 38 39 40
};

class MyTestOpProtoAndCheckerMaker : public OpProtoAndCheckerMaker {
 public:
  MyTestOpProtoAndCheckerMaker(OpProto* proto, OpAttrChecker* op_checker)
      : OpProtoAndCheckerMaker(proto, op_checker) {
Y
Yu Yang 已提交
41 42
    AddInput("input", "input of cosine op").SetMultiple();
    AddOutput("output", "output of cosine op").SetTemporary();
43 44 45 46 47 48 49 50 51 52 53
    auto my_checker = [](int i) {
      PADDLE_ENFORCE(i % 2 == 0, "'test_attr' must be even!");
    };
    AddAttr<int>("test_attr", "a simple test attribute")
        .AddCustomChecker(my_checker);
    AddComment("This is my_test op");
  }
};
}  // namespace framework
}  // namespace paddle

Y
Yu Yang 已提交
54 55 56 57 58
REGISTER_OP(cos_sim, paddle::framework::CosineOp,
            paddle::framework::CosineOpProtoAndCheckerMaker);
REGISTER_OP(my_test_op, paddle::framework::MyTestOp,
            paddle::framework::MyTestOpProtoAndCheckerMaker);

59 60 61
TEST(OpRegistry, CreateOp) {
  paddle::framework::OpDesc op_desc;
  op_desc.set_type("cos_sim");
Y
Yu Yang 已提交
62
  auto input = op_desc.add_inputs();
63 64
  input->set_parameter("input");
  *input->mutable_arguments()->Add() = "aa";
Y
Yu Yang 已提交
65 66

  auto output = op_desc.add_outputs();
67 68
  output->set_parameter("output");
  *output->mutable_arguments()->Add() = "bb";
69

Q
Qiao Longfei 已提交
70
  float scale = 3.3;
71 72 73
  auto attr = op_desc.mutable_attrs()->Add();
  attr->set_name("scale");
  attr->set_type(paddle::framework::AttrType::FLOAT);
Q
Qiao Longfei 已提交
74
  attr->set_f(scale);
75

Y
Yu Yang 已提交
76
  std::shared_ptr<paddle::framework::OperatorBase> op =
77
      paddle::framework::OpRegistry::CreateOp(op_desc);
Y
Yu Yang 已提交
78
  paddle::framework::Scope scope;
Y
Yu Yang 已提交
79 80
  paddle::platform::CPUDeviceContext dev_ctx;
  op->Run(scope, dev_ctx);
Q
Qiao Longfei 已提交
81 82
  float scale_get = op->GetAttr<float>("scale");
  ASSERT_EQ(scale_get, scale);
83 84 85 86 87
}

TEST(OpRegistry, IllegalAttr) {
  paddle::framework::OpDesc op_desc;
  op_desc.set_type("cos_sim");
Y
Yu Yang 已提交
88
  auto input = op_desc.add_inputs();
89 90
  input->set_parameter("input");
  *input->mutable_arguments()->Add() = "aa";
Y
Yu Yang 已提交
91 92

  auto output = op_desc.add_outputs();
93 94
  output->set_parameter("output");
  *output->mutable_arguments()->Add() = "bb";
95 96 97 98 99 100 101 102

  auto attr = op_desc.mutable_attrs()->Add();
  attr->set_name("scale");
  attr->set_type(paddle::framework::AttrType::FLOAT);
  attr->set_f(-2.0);

  bool caught = false;
  try {
Y
Yu Yang 已提交
103
    paddle::framework::OpRegistry::CreateOp(op_desc);
Y
Yu Yang 已提交
104
  } catch (paddle::platform::EnforceNotMet err) {
105 106 107 108 109 110 111 112 113 114 115 116 117
    caught = true;
    std::string msg = "larger_than check fail";
    const char* err_msg = err.what();
    for (size_t i = 0; i < msg.length(); ++i) {
      ASSERT_EQ(err_msg[i], msg[i]);
    }
  }
  ASSERT_TRUE(caught);
}

TEST(OpRegistry, DefaultValue) {
  paddle::framework::OpDesc op_desc;
  op_desc.set_type("cos_sim");
Y
Yu Yang 已提交
118
  auto input = op_desc.add_inputs();
119 120
  input->set_parameter("input");
  *input->mutable_arguments()->Add() = "aa";
Y
Yu Yang 已提交
121 122

  auto output = op_desc.add_outputs();
123 124
  output->set_parameter("output");
  *output->mutable_arguments()->Add() = "bb";
125

Q
Qiao Longfei 已提交
126 127
  ASSERT_TRUE(op_desc.IsInitialized());

Y
Yu Yang 已提交
128
  std::shared_ptr<paddle::framework::OperatorBase> op =
129
      paddle::framework::OpRegistry::CreateOp(op_desc);
Y
Yu Yang 已提交
130
  paddle::framework::Scope scope;
Y
Yu Yang 已提交
131 132
  paddle::platform::CPUDeviceContext dev_ctx;
  op->Run(scope, dev_ctx);
Q
Qiao Longfei 已提交
133
  ASSERT_EQ(op->GetAttr<float>("scale"), 1.0);
134 135 136 137 138
}

TEST(OpRegistry, CustomChecker) {
  paddle::framework::OpDesc op_desc;
  op_desc.set_type("my_test_op");
Y
Yu Yang 已提交
139
  auto input = op_desc.add_inputs();
140 141
  input->set_parameter("input");
  *input->mutable_arguments()->Add() = "ii";
Y
Yu Yang 已提交
142 143

  auto output = op_desc.add_outputs();
144 145
  output->set_parameter("output");
  *output->mutable_arguments()->Add() = "oo";
146 147 148 149

  // attr 'test_attr' is not set
  bool caught = false;
  try {
Y
Yu Yang 已提交
150
    paddle::framework::OpRegistry::CreateOp(op_desc);
Y
Yu Yang 已提交
151
  } catch (paddle::platform::EnforceNotMet err) {
152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167
    caught = true;
    std::string msg = "Attribute 'test_attr' is required!";
    const char* err_msg = err.what();
    for (size_t i = 0; i < msg.length(); ++i) {
      ASSERT_EQ(err_msg[i], msg[i]);
    }
  }
  ASSERT_TRUE(caught);

  // set 'test_attr' set to an illegal value
  auto attr = op_desc.mutable_attrs()->Add();
  attr->set_name("test_attr");
  attr->set_type(paddle::framework::AttrType::INT);
  attr->set_i(3);
  caught = false;
  try {
Y
Yu Yang 已提交
168
    paddle::framework::OpRegistry::CreateOp(op_desc);
Y
Yu Yang 已提交
169
  } catch (paddle::platform::EnforceNotMet err) {
170 171 172 173 174 175 176 177 178 179 180 181 182 183 184
    caught = true;
    std::string msg = "'test_attr' must be even!";
    const char* err_msg = err.what();
    for (size_t i = 0; i < msg.length(); ++i) {
      ASSERT_EQ(err_msg[i], msg[i]);
    }
  }
  ASSERT_TRUE(caught);

  // set 'test_attr' set to a legal value
  op_desc.mutable_attrs()->Clear();
  attr = op_desc.mutable_attrs()->Add();
  attr->set_name("test_attr");
  attr->set_type(paddle::framework::AttrType::INT);
  attr->set_i(4);
Y
Yu Yang 已提交
185
  auto op = paddle::framework::OpRegistry::CreateOp(op_desc);
Y
Yu Yang 已提交
186
  paddle::platform::CPUDeviceContext dev_ctx;
Y
Yu Yang 已提交
187
  paddle::framework::Scope scope;
Y
Yu Yang 已提交
188
  op->Run(scope, dev_ctx);
Q
Qiao Longfei 已提交
189 190
  int test_attr = op->GetAttr<int>("test_attr");
  ASSERT_EQ(test_attr, 4);
D
dongzhihong 已提交
191
}
192 193 194 195 196 197 198 199 200 201 202 203 204 205

class TestAttrProtoMaker : public pd::OpProtoAndCheckerMaker {
 public:
  TestAttrProtoMaker(pd::OpProto* proto, pd::OpAttrChecker* op_checker)
      : OpProtoAndCheckerMaker(proto, op_checker) {
    AddAttr<float>("scale", "scale of test op");
    AddAttr<float>("scale", "scale of test op");
  }
};

TEST(ProtoMaker, DuplicatedAttr) {
  pd::OpProto op_proto;
  pd::OpAttrChecker op_checker;
  auto proto_maker = TestAttrProtoMaker(&op_proto, &op_checker);
Y
Yu Yang 已提交
206
  ASSERT_THROW(proto_maker.Validate(), paddle::platform::EnforceNotMet);
207 208 209 210 211 212 213 214 215 216 217 218 219 220 221
}

class TestInOutProtoMaker : public pd::OpProtoAndCheckerMaker {
 public:
  TestInOutProtoMaker(pd::OpProto* proto, pd::OpAttrChecker* op_checker)
      : OpProtoAndCheckerMaker(proto, op_checker) {
    AddInput("input", "input of test op");
    AddInput("input", "input of test op");
  }
};

TEST(ProtoMaker, DuplicatedInOut) {
  pd::OpProto op_proto;
  pd::OpAttrChecker op_checker;
  auto proto_maker = TestInOutProtoMaker(&op_proto, &op_checker);
Y
Yu Yang 已提交
222
  ASSERT_THROW(proto_maker.Validate(), paddle::platform::EnforceNotMet);
223
}