operator_test.cc 4.5 KB
Newer Older
Q
Qiao Longfei 已提交
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 {

Q
Qiao Longfei 已提交
22 23 24
static int op_run_num = 0;

class OpWithoutKernelTest : public OperatorBase {
Q
Qiao Longfei 已提交
25
 public:
Q
Qiao Longfei 已提交
26
  void Init() override { x = 1; }
Q
Qiao Longfei 已提交
27 28
  void InferShape(const ScopePtr& scope) const override {}
  void Run(const ScopePtr& scope,
Y
Yu Yang 已提交
29
           const platform::DeviceContext& dev_ctx) const override {
Q
Qiao Longfei 已提交
30 31 32 33
    op_run_num++;
    ASSERT_EQ((int)inputs_.size(), 1);
    ASSERT_EQ((int)outputs_.size(), 1);
    ASSERT_NEAR(GetAttr<float>("scale"), 3.14, 1e-5);
Y
Yu Yang 已提交
34
    ASSERT_EQ(scope->GetVariable(inputs_[0]), nullptr);
Q
Qiao Longfei 已提交
35
    ASSERT_EQ(x, 1);
Y
Yu Yang 已提交
36
    ASSERT_NE(scope->GetVariable(outputs_[0]), nullptr);
Q
Qiao Longfei 已提交
37
  }
Q
Qiao Longfei 已提交
38 39 40

 public:
  float x = 0;
Q
Qiao Longfei 已提交
41 42
};

Q
Qiao Longfei 已提交
43
class OpeWithoutKernelTestProtoAndCheckerMaker : public OpProtoAndCheckerMaker {
Q
Qiao Longfei 已提交
44
 public:
Q
Qiao Longfei 已提交
45 46
  OpeWithoutKernelTestProtoAndCheckerMaker(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

Q
Qiao Longfei 已提交
58 59
REGISTER_OP(test_operator, paddle::framework::OpWithoutKernelTest,
            paddle::framework::OpeWithoutKernelTestProtoAndCheckerMaker);
Q
Qiao Longfei 已提交
60 61 62 63 64 65 66 67 68

TEST(OperatorBase, all) {
  paddle::framework::OpDesc op_desc;
  op_desc.set_type("test_operator");
  *op_desc.mutable_inputs()->Add() = "IN1";
  *op_desc.mutable_outputs()->Add() = "OUT1";
  auto attr = op_desc.mutable_attrs()->Add();
  attr->set_name("scale");
  attr->set_type(paddle::framework::AttrType::FLOAT);
Q
Qiao Longfei 已提交
69
  attr->set_f(3.14);
Q
Qiao Longfei 已提交
70 71 72 73 74 75 76

  paddle::platform::CPUDeviceContext device_context;
  auto scope = std::make_shared<paddle::framework::Scope>();

  paddle::framework::OperatorPtr op =
      paddle::framework::OpRegistry::CreateOp(op_desc);
  scope->CreateVariable("OUT1");
Q
Qiao Longfei 已提交
77
  ASSERT_EQ(paddle::framework::op_run_num, 0);
Q
Qiao Longfei 已提交
78
  op->Run(scope, device_context);
Q
Qiao Longfei 已提交
79
  ASSERT_EQ(paddle::framework::op_run_num, 1);
Q
Qiao Longfei 已提交
80 81 82 83 84
}

namespace paddle {
namespace framework {

Q
Qiao Longfei 已提交
85 86 87 88 89 90
class OpKernelTestProtoAndCheckerMaker : public OpProtoAndCheckerMaker {
 public:
  OpKernelTestProtoAndCheckerMaker(OpProto* proto, OpAttrChecker* op_checker)
      : OpProtoAndCheckerMaker(proto, op_checker) {
    AddInput("input", "input of test op");
    AddOutput("output", "output of test op");
Q
Qiao Longfei 已提交
91
    AddAttr<float>("scale", "scale of cosine op");
Q
Qiao Longfei 已提交
92 93 94 95
    AddComment("This is test op");
  }
};

Q
Qiao Longfei 已提交
96 97
static int cpu_kernel_run_num = 0;

Q
Qiao Longfei 已提交
98
class OpWithKernelTest : public OperatorWithKernel {
Y
Yu Yang 已提交
99 100 101
 protected:
  void InferShape(const std::vector<const Tensor*>& inputs,
                  const std::vector<Tensor*>& outputs) const override {}
Q
Qiao Longfei 已提交
102 103 104 105 106
};

class CPUKernelTest : public OpKernel {
 public:
  void Compute(const KernelContext& context) const {
Q
Qiao Longfei 已提交
107 108 109 110
    cpu_kernel_run_num++;
    ASSERT_EQ((int)context.op_.inputs_.size(), 1);
    ASSERT_EQ((int)context.op_.outputs_.size(), 1);
    ASSERT_NEAR(context.op_.GetAttr<float>("scale"), 3.14, 1e-5);
Q
Qiao Longfei 已提交
111 112 113
  }
};

Y
Yu Yang 已提交
114 115 116 117 118 119
}  // namespace framework
}  // namespace paddle

REGISTER_OP(op_with_kernel, paddle::framework::OpWithKernelTest,
            paddle::framework::OpKernelTestProtoAndCheckerMaker);
REGISTER_OP_CPU_KERNEL(op_with_kernel, paddle::framework::CPUKernelTest);
Q
Qiao Longfei 已提交
120 121

TEST(OpKernel, all) {
Q
Qiao Longfei 已提交
122
  paddle::framework::OpDesc op_desc;
Q
Qiao Longfei 已提交
123 124 125 126 127 128 129 130
  op_desc.set_type("op_with_kernel");
  *op_desc.mutable_inputs()->Add() = "IN1";
  *op_desc.mutable_outputs()->Add() = "OUT1";
  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 已提交
131
  paddle::platform::CPUDeviceContext cpu_device_context;
Q
Qiao Longfei 已提交
132
  auto scope = std::make_shared<paddle::framework::Scope>();
Q
Qiao Longfei 已提交
133

Q
Qiao Longfei 已提交
134 135
  paddle::framework::OperatorPtr op =
      paddle::framework::OpRegistry::CreateOp(op_desc);
Q
Qiao Longfei 已提交
136
  ASSERT_EQ(paddle::framework::cpu_kernel_run_num, 0);
Q
Qiao Longfei 已提交
137
  op->Run(scope, cpu_device_context);
Q
Qiao Longfei 已提交
138
  ASSERT_EQ(paddle::framework::cpu_kernel_run_num, 1);
Q
Qiao Longfei 已提交
139
}