op_registry_test.cc 11.6 KB
Newer Older
D
dzhwinter 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14
/* Copyright (c) 2016 PaddlePaddle Authors. All Rights Reserve.

   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. */

D
dzhwinter 已提交
15
#include <glog/logging.h>
16
#include <gtest/gtest.h>
Q
Qiao Longfei 已提交
17

D
dzhwinter 已提交
18 19
#include "paddle/framework/op_registry.h"

20 21
namespace pd = paddle::framework;

22 23
namespace paddle {
namespace framework {
D
dzhwinter 已提交
24

Y
Yu Yang 已提交
25
class CosineOp : public OperatorBase {
26
 public:
Y
Yu Yang 已提交
27
  using OperatorBase::OperatorBase;
28 29 30 31

 private:
  void RunImpl(const Scope& scope,
               const platform::Place& place) const override {}
32 33 34 35 36 37 38 39 40 41
};

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)
F
fengjiayi 已提交
42
        .GreaterThan(0.0);
43 44 45 46
    AddComment("This is cos op");
  }
};

Y
Yu Yang 已提交
47 48
class MyTestOp : public OperatorBase {
 public:
Y
Yu Yang 已提交
49
  using OperatorBase::OperatorBase;
50 51 52 53

 private:
  void RunImpl(const Scope& scope,
               const platform::Place& place) const override {}
54 55 56 57 58 59
};

class MyTestOpProtoAndCheckerMaker : public OpProtoAndCheckerMaker {
 public:
  MyTestOpProtoAndCheckerMaker(OpProto* proto, OpAttrChecker* op_checker)
      : OpProtoAndCheckerMaker(proto, op_checker) {
Y
Yu Yang 已提交
60 61
    AddInput("input", "input of cosine op").AsDuplicable();
    AddOutput("output", "output of cosine op").AsIntermediate();
62 63 64 65 66 67 68 69 70 71 72
    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 已提交
73 74
static void BuildVar(const std::string& param_name,
                     std::initializer_list<const char*> arguments,
75
                     paddle::framework::proto::OpDesc::Var* var) {
Y
Yu Yang 已提交
76 77
  var->set_parameter(param_name);
  for (auto& arg_name : arguments) {
Y
Yu Yang 已提交
78
    var->add_arguments(arg_name);
Y
Yu Yang 已提交
79 80
  }
}
F
fengjiayi 已提交
81 82 83 84
REGISTER_OP_WITHOUT_GRADIENT(cos_sim, paddle::framework::CosineOp,
                             paddle::framework::CosineOpProtoAndCheckerMaker);
REGISTER_OP_WITHOUT_GRADIENT(my_test_op, paddle::framework::MyTestOp,
                             paddle::framework::MyTestOpProtoAndCheckerMaker);
Y
Yu Yang 已提交
85

86
TEST(OpRegistry, CreateOp) {
87
  paddle::framework::proto::OpDesc op_desc;
88
  op_desc.set_type("cos_sim");
Y
Yu Yang 已提交
89 90
  BuildVar("input", {"aa"}, op_desc.add_inputs());
  BuildVar("output", {"bb"}, op_desc.add_outputs());
91

Q
Qiao Longfei 已提交
92
  float scale = 3.3;
93 94
  auto attr = op_desc.mutable_attrs()->Add();
  attr->set_name("scale");
95
  attr->set_type(paddle::framework::proto::AttrType::FLOAT);
Q
Qiao Longfei 已提交
96
  attr->set_f(scale);
97

98
  auto op = paddle::framework::OpRegistry::CreateOp(op_desc);
Y
Yu Yang 已提交
99
  paddle::framework::Scope scope;
D
dzhwinter 已提交
100 101
  paddle::platform::CPUPlace cpu_place;
  op->Run(scope, cpu_place);
Y
Yu Yang 已提交
102
  float scale_get = op->Attr<float>("scale");
Q
Qiao Longfei 已提交
103
  ASSERT_EQ(scale_get, scale);
104 105 106
}

TEST(OpRegistry, IllegalAttr) {
107
  paddle::framework::proto::OpDesc op_desc;
108
  op_desc.set_type("cos_sim");
Y
Yu Yang 已提交
109 110
  BuildVar("input", {"aa"}, op_desc.add_inputs());
  BuildVar("output", {"bb"}, op_desc.add_outputs());
111 112 113

  auto attr = op_desc.mutable_attrs()->Add();
  attr->set_name("scale");
114
  attr->set_type(paddle::framework::proto::AttrType::FLOAT);
115 116 117 118
  attr->set_f(-2.0);

  bool caught = false;
  try {
119
    paddle::framework::OpRegistry::CreateOp(op_desc);
Y
Yu Yang 已提交
120
  } catch (paddle::platform::EnforceNotMet err) {
121 122 123 124 125 126 127 128 129 130 131
    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) {
132
  paddle::framework::proto::OpDesc op_desc;
133
  op_desc.set_type("cos_sim");
Y
Yu Yang 已提交
134 135
  BuildVar("input", {"aa"}, op_desc.add_inputs());
  BuildVar("output", {"bb"}, op_desc.add_outputs());
136

Q
Qiao Longfei 已提交
137 138
  ASSERT_TRUE(op_desc.IsInitialized());

139
  auto op = paddle::framework::OpRegistry::CreateOp(op_desc);
Y
Yu Yang 已提交
140
  paddle::framework::Scope scope;
D
dzhwinter 已提交
141 142
  paddle::platform::CPUPlace cpu_place;
  op->Run(scope, cpu_place);
Y
Yu Yang 已提交
143
  ASSERT_EQ(op->Attr<float>("scale"), 1.0);
144 145 146
}

TEST(OpRegistry, CustomChecker) {
147
  paddle::framework::proto::OpDesc op_desc;
148
  op_desc.set_type("my_test_op");
Y
Yu Yang 已提交
149 150
  BuildVar("input", {"ii"}, op_desc.add_inputs());
  BuildVar("output", {"oo"}, op_desc.add_outputs());
151 152 153 154

  // attr 'test_attr' is not set
  bool caught = false;
  try {
155
    paddle::framework::OpRegistry::CreateOp(op_desc);
Y
Yu Yang 已提交
156
  } catch (paddle::platform::EnforceNotMet err) {
157 158 159 160 161 162 163 164 165 166 167 168
    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");
169
  attr->set_type(paddle::framework::proto::AttrType::INT);
170 171 172
  attr->set_i(3);
  caught = false;
  try {
173
    paddle::framework::OpRegistry::CreateOp(op_desc);
Y
Yu Yang 已提交
174
  } catch (paddle::platform::EnforceNotMet err) {
175 176 177 178 179 180 181 182 183 184 185 186 187
    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");
188
  attr->set_type(paddle::framework::proto::AttrType::INT);
189
  attr->set_i(4);
190
  auto op = paddle::framework::OpRegistry::CreateOp(op_desc);
D
dzhwinter 已提交
191
  paddle::platform::CPUPlace cpu_place;
Y
Yu Yang 已提交
192
  paddle::framework::Scope scope;
D
dzhwinter 已提交
193
  op->Run(scope, cpu_place);
Y
Yu Yang 已提交
194
  int test_attr = op->Attr<int>("test_attr");
Q
Qiao Longfei 已提交
195
  ASSERT_EQ(test_attr, 4);
Q
Qiao Longfei 已提交
196
}
197 198 199 200 201 202 203 204 205 206

class CosineOpComplete : public paddle::framework::CosineOp {
 public:
  DEFINE_OP_CONSTRUCTOR(CosineOpComplete, paddle::framework::CosineOp);
  DEFINE_OP_CLONE_METHOD(CosineOpComplete);
};

TEST(OperatorRegistrar, Test) {
  using namespace paddle::framework;
  OperatorRegistrar<CosineOpComplete, CosineOpProtoAndCheckerMaker> reg("cos");
207
}
D
dzhwinter 已提交
208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226

namespace paddle {
namespace framework {

class OpKernelTestMaker : public OpProtoAndCheckerMaker {
 public:
  OpKernelTestMaker(OpProto* proto, OpAttrChecker* op_checker)
      : OpProtoAndCheckerMaker(proto, op_checker) {
    AddComment("NoGradOp, same input output. no Grad");
  }
};

class OpWithKernelTest : public OperatorWithKernel {
 public:
  using OperatorWithKernel::OperatorWithKernel;

 protected:
  void InferShape(InferShapeContext* ctx) const override {}

227
  framework::OpKernelType GetExpectedKernelType(
D
dzhwinter 已提交
228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273
      const framework::ExecutionContext& ctx) const override {
    return framework::OpKernelType(proto::DataType::FP32, ctx.device_context());
  }
};

template <typename DeviceContext, typename T>
class OpKernelTest : public paddle::framework::OpKernel<T> {
 public:
  void Compute(const paddle::framework::ExecutionContext& ctx) const {}
};

}  // namespace framework
}  // namespace paddle

REGISTER_OP_WITHOUT_GRADIENT(op_with_kernel,
                             paddle::framework::OpWithKernelTest,
                             paddle::framework::OpKernelTestMaker);
REGISTER_OP_CPU_KERNEL(
    op_with_kernel,
    paddle::framework::OpKernelTest<paddle::platform::CPUDeviceContext, float>);

REGISTER_OP_CUDA_KERNEL(op_with_kernel,
                        paddle::framework::OpKernelTest<
                            paddle::platform::CUDADeviceContext, float>);

TEST(OperatorRegistrar, CPU) {
  paddle::framework::proto::OpDesc op_desc;
  paddle::platform::CPUPlace cpu_place;
  paddle::framework::Scope scope;

  op_desc.set_type("op_with_kernel");
  auto op = paddle::framework::OpRegistry::CreateOp(op_desc);

  op->Run(scope, cpu_place);
}

TEST(OperatorRegistrar, CUDA) {
  paddle::framework::proto::OpDesc op_desc;
  paddle::platform::CUDAPlace cuda_place(0);
  paddle::framework::Scope scope;

  op_desc.set_type("op_with_kernel");
  auto op = paddle::framework::OpRegistry::CreateOp(op_desc);

  op->Run(scope, cuda_place);
}
D
dzhwinter 已提交
274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291

static int op_test_value = 0;

using paddle::platform::DeviceContext;
using paddle::platform::CPUDeviceContext;
using paddle::platform::CUDADeviceContext;

namespace paddle {
namespace framework {

class OpWithMultiKernelTest : public OperatorWithKernel {
 public:
  using OperatorWithKernel::OperatorWithKernel;

 protected:
  void InferShape(InferShapeContext* ctx) const override {}

  framework::OpKernelType GetExpectedKernelType(
292 293 294 295
      const framework::ExecutionContext& ctx) const override {
    return framework::OpKernelType(
        proto::DataType::FP32, platform::CUDAPlace(0), DataLayout::kAnyLayout,
        framework::LibraryType::kCUDNN);
D
dzhwinter 已提交
296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374
  }
};

template <typename DeviceContext, typename T>
class OpMultiKernelTest : public paddle::framework::OpKernel<T> {
 public:
  void Compute(const paddle::framework::ExecutionContext& ctx) const;
};

template <typename T>
class OpMultiKernelTest<CPUDeviceContext, T>
    : public paddle::framework::OpKernel<T> {
 public:
  void Compute(const paddle::framework::ExecutionContext& ctx) const {
    ++op_test_value;
  }
};

template <typename T>
class OpMultiKernelTest<CUDADeviceContext, T>
    : public paddle::framework::OpKernel<T> {
 public:
  void Compute(const paddle::framework::ExecutionContext& ctx) const {
    --op_test_value;
  }
};

template <typename DeviceContext, typename T>
class OpMultiKernelTest2 : public paddle::framework::OpKernel<T> {
 public:
  void Compute(const paddle::framework::ExecutionContext& ctx) const;
};

template <typename T>
class OpMultiKernelTest2<CPUDeviceContext, T>
    : public paddle::framework::OpKernel<T> {
 public:
  void Compute(const paddle::framework::ExecutionContext& ctx) const {
    op_test_value += 10;
  }
};

template <typename T>
class OpMultiKernelTest2<CUDADeviceContext, T>
    : public paddle::framework::OpKernel<T> {
 public:
  void Compute(const paddle::framework::ExecutionContext& ctx) const {
    op_test_value -= 10;
  }
};

}  // namespace framework
}  // namespace paddle

REGISTER_OP_WITHOUT_GRADIENT(op_with_multi_kernel,
                             paddle::framework::OpWithMultiKernelTest,
                             paddle::framework::OpKernelTestMaker);
REGISTER_OP_KERNEL(
    op_with_multi_kernel, CPU, paddle::platform::CPUPlace,
    paddle::framework::OpMultiKernelTest<CPUDeviceContext, float>);
REGISTER_OP_KERNEL(
    op_with_multi_kernel, MKLDNN, paddle::platform::CPUPlace,
    paddle::framework::OpMultiKernelTest2<CPUDeviceContext, float>);
REGISTER_OP_KERNEL(
    op_with_multi_kernel, CUDA, paddle::platform::CUDAPlace,
    paddle::framework::OpMultiKernelTest<CUDADeviceContext, float>);
REGISTER_OP_KERNEL(
    op_with_multi_kernel, CUDNN, paddle::platform::CUDAPlace,
    paddle::framework::OpMultiKernelTest2<CUDADeviceContext, float>);

TEST(OperatorRegistrar, OpWithMultiKernel) {
  paddle::framework::proto::OpDesc op_desc;
  paddle::platform::CUDAPlace cuda_place(0);
  paddle::platform::CPUPlace cpu_place;
  paddle::framework::Scope scope;

  op_desc.set_type("op_with_multi_kernel");
  auto op = paddle::framework::OpRegistry::CreateOp(op_desc);

375
  // TODO(qiao) add priority back
D
dzhwinter 已提交
376 377 378 379
  // use all available kernels
  op->Run(scope, cuda_place);
  EXPECT_EQ(op_test_value, -10);
}