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

   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

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

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
};

class CosineOpProtoAndCheckerMaker : public OpProtoAndCheckerMaker {
 public:
Y
Yu Yang 已提交
36
  void Make() {
37 38 39 40
    AddInput("input", "input of cosine op");
    AddOutput("output", "output of cosine op");
    AddAttr<float>("scale", "scale of cosine op")
        .SetDefault(1.0)
F
fengjiayi 已提交
41
        .GreaterThan(0.0);
42 43 44 45
    AddComment("This is cos op");
  }
};

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

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

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

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

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

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

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

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

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

Q
Qiao Longfei 已提交
135 136
  ASSERT_TRUE(op_desc.IsInitialized());

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

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

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

TEST(OperatorRegistrar, Test) {
197
  paddle::framework::OperatorRegistrar<
Y
yuyang18 已提交
198 199
      paddle::framework::CosineOp,
      paddle::framework::CosineOpProtoAndCheckerMaker>
200
      reg("cos");
201
}
D
dzhwinter 已提交
202 203 204 205 206 207

namespace paddle {
namespace framework {

class OpKernelTestMaker : public OpProtoAndCheckerMaker {
 public:
Y
Yu Yang 已提交
208
  void Make() { AddComment("NoGradOp, same input output. no Grad"); }
D
dzhwinter 已提交
209 210 211 212 213 214 215 216 217
};

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

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

218
  framework::OpKernelType GetExpectedKernelType(
D
dzhwinter 已提交
219
      const framework::ExecutionContext& ctx) const override {
220
    return framework::OpKernelType(proto::VarType::FP32, ctx.device_context());
D
dzhwinter 已提交
221 222 223 224 225 226 227 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
  }
};

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 已提交
265 266 267 268 269

static int op_test_value = 0;

using paddle::platform::CPUDeviceContext;
using paddle::platform::CUDADeviceContext;
Y
Yu Yang 已提交
270
using paddle::platform::DeviceContext;
D
dzhwinter 已提交
271 272 273 274 275 276 277 278 279 280 281 282

namespace paddle {
namespace framework {

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

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

  framework::OpKernelType GetExpectedKernelType(
283
      const framework::ExecutionContext& ctx) const override {
284 285 286
    return framework::OpKernelType(proto::VarType::FP32, platform::CUDAPlace(0),
                                   DataLayout::kAnyLayout,
                                   framework::LibraryType::kCUDNN);
D
dzhwinter 已提交
287 288 289 290 291 292 293 294 295 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
  }
};

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);

366
  // TODO(qiao) add priority back
D
dzhwinter 已提交
367 368 369 370
  // use all available kernels
  op->Run(scope, cuda_place);
  EXPECT_EQ(op_test_value, -10);
}