operator_test.cc 8.7 KB
Newer Older
Q
Qiao Longfei 已提交
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. */
#include "gtest/gtest.h"
D
dzhwinter 已提交
15 16

#include "paddle/framework/init.h"
Q
Qiao Longfei 已提交
17
#include "paddle/framework/op_info.h"
Q
Qiao Longfei 已提交
18
#include "paddle/framework/op_registry.h"
D
dzhwinter 已提交
19
#include "paddle/framework/operator.h"
Q
Qiao Longfei 已提交
20 21 22 23

namespace paddle {
namespace framework {

Q
Qiao Longfei 已提交
24 25 26
static int op_run_num = 0;

class OpWithoutKernelTest : public OperatorBase {
Q
Qiao Longfei 已提交
27
 public:
Y
Yu Yang 已提交
28 29
  OpWithoutKernelTest(const std::string& type, const VariableNameMap& inputs,
                      const VariableNameMap& outputs, const AttributeMap& attrs)
Y
Yu Yang 已提交
30
      : OperatorBase(type, inputs, outputs, attrs), x(1) {}
D
dzhwinter 已提交
31
  void Run(const Scope& scope, const platform::Place& place) const override {
Y
Yu Yang 已提交
32 33 34 35
    ++op_run_num;
    ASSERT_EQ(static_cast<int>(inputs_.size()), 1);
    ASSERT_EQ(static_cast<int>(outputs_.size()), 1);
    ASSERT_EQ(scope.FindVar(inputs_.at("input")[0]), nullptr);
Q
Qiao Longfei 已提交
36
    ASSERT_EQ(x, 1);
Y
Yu Yang 已提交
37
    ASSERT_NE(scope.FindVar(outputs_.at("output")[0]), nullptr);
Q
Qiao Longfei 已提交
38
  }
Q
Qiao Longfei 已提交
39 40

 public:
Y
Yu Yang 已提交
41
  int x{0};
Q
Qiao Longfei 已提交
42 43
};

D
dzhwinter 已提交
44
class OpWithoutKernelCheckerMaker : public OpProtoAndCheckerMaker {
Q
Qiao Longfei 已提交
45
 public:
D
dzhwinter 已提交
46
  OpWithoutKernelCheckerMaker(OpProto* proto, OpAttrChecker* op_checker)
Q
Qiao Longfei 已提交
47 48 49
      : OpProtoAndCheckerMaker(proto, op_checker) {
    AddInput("input", "input of test op");
    AddOutput("output", "output of test op");
Q
Qiao Longfei 已提交
50
    AddAttr<float>("scale", "scale of cosine op");
Q
Qiao Longfei 已提交
51 52 53 54 55 56 57
    AddComment("This is test op");
  }
};

}  // namespace framework
}  // namespace paddle

Y
Yu Yang 已提交
58 59
static void BuildVar(const std::string& param_name,
                     std::initializer_list<const char*> arguments,
60
                     paddle::framework::proto::OpDesc::Var* var) {
Y
Yu Yang 已提交
61 62 63 64 65 66
  var->set_parameter(param_name);
  for (auto& arg_name : arguments) {
    *var->mutable_arguments()->Add() = arg_name;
  }
}

D
dzhwinter 已提交
67 68 69
REGISTER_OP_WITHOUT_GRADIENT(test_operator,
                             paddle::framework::OpWithoutKernelTest,
                             paddle::framework::OpWithoutKernelCheckerMaker);
Q
Qiao Longfei 已提交
70 71

TEST(OperatorBase, all) {
72
  paddle::framework::InitDevices();
73
  paddle::framework::proto::OpDesc op_desc;
Q
Qiao Longfei 已提交
74
  op_desc.set_type("test_operator");
Y
Yu Yang 已提交
75 76
  BuildVar("input", {"IN1"}, op_desc.add_inputs());
  BuildVar("output", {"OUT1"}, op_desc.add_outputs());
Y
Yu Yang 已提交
77

Q
Qiao Longfei 已提交
78 79
  auto attr = op_desc.mutable_attrs()->Add();
  attr->set_name("scale");
80
  attr->set_type(paddle::framework::proto::AttrType::FLOAT);
Q
Qiao Longfei 已提交
81
  attr->set_f(3.14);
Q
Qiao Longfei 已提交
82

D
dzhwinter 已提交
83
  paddle::platform::CPUPlace cpu_place;
Y
Yu Yang 已提交
84
  paddle::framework::Scope scope;
Q
Qiao Longfei 已提交
85

86
  auto op = paddle::framework::OpRegistry::CreateOp(op_desc);
D
dongzhihong 已提交
87
  scope.Var("OUT1");
Q
Qiao Longfei 已提交
88
  ASSERT_EQ(paddle::framework::op_run_num, 0);
D
dzhwinter 已提交
89
  op->Run(scope, cpu_place);
Q
Qiao Longfei 已提交
90
  ASSERT_EQ(paddle::framework::op_run_num, 1);
Q
Qiao Longfei 已提交
91 92 93 94 95
}

namespace paddle {
namespace framework {

Q
Qiao Longfei 已提交
96 97 98 99
class OpKernelTestProtoAndCheckerMaker : public OpProtoAndCheckerMaker {
 public:
  OpKernelTestProtoAndCheckerMaker(OpProto* proto, OpAttrChecker* op_checker)
      : OpProtoAndCheckerMaker(proto, op_checker) {
Y
Yan Chunwei 已提交
100 101 102 103
    AddInput("x", "input of test op");
    AddOutput("y", "output of test op");
    AddAttr<float>("scale", "scale of cosine op")
        .SetDefault(1.0)
F
fengjiayi 已提交
104
        .GreaterThan(0.0);
Q
Qiao Longfei 已提交
105 106 107 108
    AddComment("This is test op");
  }
};

Q
Qiao Longfei 已提交
109 110
static int cpu_kernel_run_num = 0;

Q
Qiao Longfei 已提交
111
class OpWithKernelTest : public OperatorWithKernel {
Y
Yu Yang 已提交
112 113 114
 public:
  using OperatorWithKernel::OperatorWithKernel;

Y
Yu Yang 已提交
115
 protected:
116
  void InferShape(framework::InferShapeContext* ctx) const override {}
117 118
  OpKernelType GetExpectedKernelType(
      const ExecutionContext& ctx) const override {
119
    return OpKernelType(proto::DataType::FP32, ctx.GetPlace());
Y
Yu Yang 已提交
120
  }
Q
Qiao Longfei 已提交
121 122
};

123
template <typename T1, typename T2>
Y
Yu Yang 已提交
124
class CPUKernelTest : public OpKernel<float> {
Q
Qiao Longfei 已提交
125
 public:
126
  void Compute(const ExecutionContext& ctx) const {
Q
qiaolongfei 已提交
127
    std::cout << ctx.op().DebugString() << std::endl;
Q
Qiao Longfei 已提交
128
    cpu_kernel_run_num++;
Q
qiaolongfei 已提交
129 130
    ASSERT_EQ(ctx.op().Input("x"), "IN1");
    ASSERT_EQ(ctx.op().Output("y"), "OUT1");
Y
Yan Chunwei 已提交
131 132 133 134 135 136 137 138 139
  }
};

class OpKernelTestMultiInputsProtoAndCheckerMaker
    : public OpProtoAndCheckerMaker {
 public:
  OpKernelTestMultiInputsProtoAndCheckerMaker(OpProto* proto,
                                              OpAttrChecker* op_checker)
      : OpProtoAndCheckerMaker(proto, op_checker) {
Y
Yu Yang 已提交
140
    AddInput("xs", "inputs of test op").AsDuplicable();
Y
Yan Chunwei 已提交
141
    AddInput("k", "input of test op");
Y
Yu Yang 已提交
142
    AddOutput("ys", "outputs of test op").AsDuplicable();
Y
Yan Chunwei 已提交
143 144
    AddAttr<float>("scale", "scale of cosine op")
        .SetDefault(1.0)
F
fengjiayi 已提交
145
        .GreaterThan(0.0);
Y
Yan Chunwei 已提交
146 147 148 149
    AddComment("This is test op");
  }
};

Y
Yu Yang 已提交
150
class CPUKernalMultiInputsTest : public OpKernel<float> {
Y
Yan Chunwei 已提交
151
 public:
152
  void Compute(const ExecutionContext& ctx) const {
Q
qiaolongfei 已提交
153
    auto xs = ctx.op().Inputs("xs");
Y
Yan Chunwei 已提交
154 155 156 157 158
    ASSERT_EQ(xs.size(), 3UL);
    ASSERT_EQ(xs[0], "x0");
    ASSERT_EQ(xs[1], "x1");
    ASSERT_EQ(xs[2], "x2");

159
    auto inVar0 = ctx.MultiInputVar("xs");
160
    ASSERT_EQ(inVar0.size(), 3U);
161 162 163 164 165

    auto intVar1 = ctx.InputVar("k");
    ASSERT_NE(intVar1, nullptr);

    auto outVar0 = ctx.MultiOutputVar("ys");
166
    ASSERT_EQ(outVar0.size(), 2U);
167 168

    auto inTensor0 = ctx.MultiInput<Tensor>("xs");
169
    ASSERT_EQ(inTensor0.size(), 3U);
170 171 172 173 174

    auto intTensor1 = ctx.Input<Tensor>("k");
    ASSERT_NE(intTensor1, nullptr);

    auto outTensor0 = ctx.MultiOutput<Tensor>("ys");
175
    ASSERT_EQ(outTensor0.size(), 2U);
176

Q
qiaolongfei 已提交
177
    auto k = ctx.op().Input("k");
Y
Yan Chunwei 已提交
178 179
    ASSERT_EQ(k, "k0");

Q
qiaolongfei 已提交
180
    auto ys = ctx.op().Outputs("ys");
Y
Yan Chunwei 已提交
181 182 183
    ASSERT_EQ(ys.size(), 2UL);
    ASSERT_EQ(ys[0], "y0");
    ASSERT_EQ(ys[1], "y1");
Q
Qiao Longfei 已提交
184 185 186
  }
};

Y
Yu Yang 已提交
187 188 189
}  // namespace framework
}  // namespace paddle

F
fengjiayi 已提交
190 191 192
REGISTER_OP_WITHOUT_GRADIENT(
    op_with_kernel, paddle::framework::OpWithKernelTest,
    paddle::framework::OpKernelTestProtoAndCheckerMaker);
193 194
REGISTER_OP_CPU_KERNEL(op_with_kernel,
                       paddle::framework::CPUKernelTest<float, float>);
Q
Qiao Longfei 已提交
195

Y
Yan Chunwei 已提交
196
// test with single input
Q
Qiao Longfei 已提交
197
TEST(OpKernel, all) {
198
  paddle::framework::InitDevices();
199
  paddle::framework::proto::OpDesc op_desc;
Q
Qiao Longfei 已提交
200
  op_desc.set_type("op_with_kernel");
Y
Fix CI  
Yu Yang 已提交
201 202
  BuildVar("x", {"IN1"}, op_desc.add_inputs());
  BuildVar("y", {"OUT1"}, op_desc.add_outputs());
Y
Yu Yang 已提交
203

Q
Qiao Longfei 已提交
204 205
  auto attr = op_desc.mutable_attrs()->Add();
  attr->set_name("scale");
206
  attr->set_type(paddle::framework::proto::AttrType::FLOAT);
Q
Qiao Longfei 已提交
207 208
  attr->set_f(3.14);

D
dzhwinter 已提交
209
  paddle::platform::CPUPlace cpu_place;
Y
Yu Yang 已提交
210
  paddle::framework::Scope scope;
Q
Qiao Longfei 已提交
211

212
  auto op = paddle::framework::OpRegistry::CreateOp(op_desc);
Q
Qiao Longfei 已提交
213
  ASSERT_EQ(paddle::framework::cpu_kernel_run_num, 0);
D
dzhwinter 已提交
214
  op->Run(scope, cpu_place);
Q
Qiao Longfei 已提交
215
  ASSERT_EQ(paddle::framework::cpu_kernel_run_num, 1);
Q
Qiao Longfei 已提交
216
}
Y
Yan Chunwei 已提交
217

F
fengjiayi 已提交
218 219 220
REGISTER_OP_WITHOUT_GRADIENT(
    op_multi_inputs_with_kernel, paddle::framework::OpWithKernelTest,
    paddle::framework::OpKernelTestMultiInputsProtoAndCheckerMaker);
Y
Yan Chunwei 已提交
221 222 223 224 225 226 227
REGISTER_OP_CPU_KERNEL(op_multi_inputs_with_kernel,
                       paddle::framework::CPUKernalMultiInputsTest);

// test with multi inputs
TEST(OpKernel, multi_inputs) {
  using namespace paddle::framework;

228
  paddle::framework::InitDevices();
229
  proto::OpDesc op_desc;
D
dzhwinter 已提交
230

Y
Yan Chunwei 已提交
231
  op_desc.set_type("op_multi_inputs_with_kernel");
Y
Yu Yang 已提交
232 233 234
  BuildVar("xs", {"x0", "x1", "x2"}, op_desc.add_inputs());
  BuildVar("k", {"k0"}, op_desc.add_inputs());
  BuildVar("ys", {"y0", "y1"}, op_desc.add_outputs());
Y
Yu Yang 已提交
235

Y
Yan Chunwei 已提交
236 237
  auto attr = op_desc.mutable_attrs()->Add();
  attr->set_name("scale");
238
  attr->set_type(paddle::framework::proto::AttrType::FLOAT);
Y
Yan Chunwei 已提交
239 240
  attr->set_f(3.14);

D
dzhwinter 已提交
241
  paddle::platform::CPUPlace cpu_place;
Y
Yu Yang 已提交
242
  paddle::framework::Scope scope;
Q
QI JUN 已提交
243 244 245 246 247 248
  scope.Var("x0")->GetMutable<LoDTensor>();
  scope.Var("x1")->GetMutable<LoDTensor>();
  scope.Var("x2")->GetMutable<LoDTensor>();
  scope.Var("k0")->GetMutable<LoDTensor>();
  scope.Var("y0")->GetMutable<LoDTensor>();
  scope.Var("y1")->GetMutable<LoDTensor>();
Y
Yan Chunwei 已提交
249

250
  auto op = paddle::framework::OpRegistry::CreateOp(op_desc);
D
dzhwinter 已提交
251
  op->Run(scope, cpu_place);
Y
Yan Chunwei 已提交
252
}
Y
Yu Yang 已提交
253 254 255 256

class OperatorClone : public paddle::framework::OperatorBase {
 public:
  DEFINE_OP_CLONE_METHOD(OperatorClone);
Y
Yu Yang 已提交
257 258 259
  OperatorClone(const std::string& type,
                const paddle::framework::VariableNameMap& inputs,
                const paddle::framework::VariableNameMap& outputs,
Y
Yu Yang 已提交
260 261 262
                const paddle::framework::AttributeMap& attrs)
      : OperatorBase(type, inputs, outputs, attrs) {}
  void Run(const paddle::framework::Scope& scope,
D
dzhwinter 已提交
263
           const paddle::platform::Place& place) const override {}
Y
Yu Yang 已提交
264 265 266
};

TEST(Operator, Clone) {
267
  paddle::framework::InitDevices();
Y
Yiqun Liu 已提交
268 269 270
  OperatorClone a("ABC", paddle::framework::VariableNameMap{},
                  paddle::framework::VariableNameMap{},
                  paddle::framework::AttributeMap{});
Y
Yu Yang 已提交
271
  auto b = a.Clone();
Y
Yu Yang 已提交
272
  ASSERT_EQ(a.Type(), b->Type());
273
}