operator_test.cc 8.4 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
/* 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 "paddle/framework/operator.h"
#include "gtest/gtest.h"
#include "paddle/framework/op_registry.h"

namespace paddle {
namespace framework {

22 23 24
static int op_run_num = 0;

class OpWithoutKernelTest : public OperatorBase {
25
 public:
26 27 28
  OpWithoutKernelTest(const std::string& type, const VarNameMap& inputs,
                      const VarNameMap& outputs, const AttributeMap& attrs)
      : OperatorBase(type, inputs, outputs, attrs), x(1) {}
29 30
  void InferShape(const Scope& scope) const override {}
  void Run(const Scope& scope,
Y
Yu Yang 已提交
31
           const platform::DeviceContext& dev_ctx) 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);
36
    ASSERT_EQ(x, 1);
Y
Yu Yang 已提交
37
    ASSERT_NE(scope.FindVar(outputs_.at("output")[0]), nullptr);
38
  }
39 40

 public:
41
  int x{0};
42 43
};

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

}  // namespace framework
}  // namespace paddle

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

F
fengjiayi 已提交
68 69 70
REGISTER_OP_WITHOUT_GRADIENT(
    test_operator, paddle::framework::OpWithoutKernelTest,
    paddle::framework::OpeWithoutKernelTestProtoAndCheckerMaker);
Q
Qiao Longfei 已提交
71 72 73 74

TEST(OperatorBase, all) {
  paddle::framework::OpDesc op_desc;
  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 80
  auto attr = op_desc.mutable_attrs()->Add();
  attr->set_name("scale");
  attr->set_type(paddle::framework::AttrType::FLOAT);
81
  attr->set_f(3.14);
Q
Qiao Longfei 已提交
82 83

  paddle::platform::CPUDeviceContext device_context;
84
  paddle::framework::Scope scope;
Q
Qiao Longfei 已提交
85

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

namespace paddle {
namespace framework {

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

110 111
static int cpu_kernel_run_num = 0;

Q
Qiao Longfei 已提交
112
class OpWithKernelTest : public OperatorWithKernel {
113 114 115
 public:
  using OperatorWithKernel::OperatorWithKernel;

Y
Yu Yang 已提交
116
 protected:
117
  void InferShape(const framework::InferShapeContext& ctx) const override {}
Q
Qiao Longfei 已提交
118 119
};

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

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

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

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

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

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

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

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

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

Y
Yan Chunwei 已提交
175 176 177 178 179 180 181
    auto k = ctx.op_.Input("k");
    ASSERT_EQ(k, "k0");

    auto ys = ctx.op_.Outputs("ys");
    ASSERT_EQ(ys.size(), 2UL);
    ASSERT_EQ(ys[0], "y0");
    ASSERT_EQ(ys[1], "y1");
Q
Qiao Longfei 已提交
182 183 184
  }
};

Y
Yu Yang 已提交
185 186 187
}  // namespace framework
}  // namespace paddle

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

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

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

Y
Yu Yang 已提交
206
  paddle::platform::CPUDeviceContext cpu_device_context;
207
  paddle::framework::Scope scope;
Q
Qiao Longfei 已提交
208

209
  auto op = paddle::framework::OpRegistry::CreateOp(op_desc);
210
  ASSERT_EQ(paddle::framework::cpu_kernel_run_num, 0);
Q
Qiao Longfei 已提交
211
  op->Run(scope, cpu_device_context);
212
  ASSERT_EQ(paddle::framework::cpu_kernel_run_num, 1);
Q
Qiao Longfei 已提交
213
}
Y
Yan Chunwei 已提交
214

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

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

  OpDesc op_desc;
  op_desc.set_type("op_multi_inputs_with_kernel");
Y
Yu Yang 已提交
227 228 229
  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 已提交
230

Y
Yan Chunwei 已提交
231 232 233 234 235 236
  auto attr = op_desc.mutable_attrs()->Add();
  attr->set_name("scale");
  attr->set_type(paddle::framework::AttrType::FLOAT);
  attr->set_f(3.14);

  paddle::platform::CPUDeviceContext cpu_device_context;
237
  paddle::framework::Scope scope;
238 239 240 241 242 243
  scope.NewVar("x0")->GetMutable<Tensor>();
  scope.NewVar("x1")->GetMutable<Tensor>();
  scope.NewVar("x2")->GetMutable<Tensor>();
  scope.NewVar("k0")->GetMutable<Tensor>();
  scope.NewVar("y0")->GetMutable<Tensor>();
  scope.NewVar("y1")->GetMutable<Tensor>();
Y
Yan Chunwei 已提交
244

245
  auto op = paddle::framework::OpRegistry::CreateOp(op_desc);
Y
Yan Chunwei 已提交
246 247
  op->Run(scope, cpu_device_context);
}
248 249 250 251 252 253 254 255 256 257 258 259 260 261 262

class OperatorClone : public paddle::framework::OperatorBase {
 public:
  DEFINE_OP_CLONE_METHOD(OperatorClone);
  OperatorClone(const std::string& type, const VarNameMap& inputs,
                const VarNameMap& outputs,
                const paddle::framework::AttributeMap& attrs)
      : OperatorBase(type, inputs, outputs, attrs) {}
  void InferShape(const paddle::framework::Scope& scope) const override {}
  void Run(const paddle::framework::Scope& scope,
           const paddle::platform::DeviceContext& dev_ctx) const override {}
};

TEST(Operator, Clone) {
  OperatorClone a("ABC", {}, {}, {});
263
  auto b = a.Clone();
264 265
  ASSERT_EQ(a.Type(), b->Type());
}