operator_test.cc 4.1 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 {

Y
Yu Yang 已提交
22
class OperatorTest : public OperatorBase {
Q
Qiao Longfei 已提交
23
 public:
Q
Qiao Longfei 已提交
24
  void Init() override { x = 1; }
Y
Yu Yang 已提交
25 26 27 28 29 30
  void InferShape(const std::shared_ptr<Scope>& scope) const override {}
  void Run(const std::shared_ptr<Scope>& scope,
           const platform::DeviceContext& dev_ctx) const override {
    float scale = GetAttr<float>("scale");
    ASSERT_NEAR(scale, 3.14, 1e-5);
    ASSERT_EQ(scope->GetVariable(inputs_[0]), nullptr);
Q
Qiao Longfei 已提交
31
    ASSERT_EQ(x, 1);
Y
Yu Yang 已提交
32
    ASSERT_NE(scope->GetVariable(outputs_[0]), nullptr);
Q
Qiao Longfei 已提交
33
  }
Q
Qiao Longfei 已提交
34 35 36

 public:
  float x = 0;
Q
Qiao Longfei 已提交
37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
};

class OperatorTestProtoAndCheckerMaker : public OpProtoAndCheckerMaker {
 public:
  OperatorTestProtoAndCheckerMaker(OpProto* proto, OpAttrChecker* op_checker)
      : OpProtoAndCheckerMaker(proto, op_checker) {
    AddInput("input", "input of test op");
    AddOutput("output", "output of test op");
    AddAttr<float>("scale", "scale of cosine op")
        .SetDefault(1.0)
        .LargerThan(0.0);
    AddType("test_operator");
    AddComment("This is test op");
  }
};

Q
Qiao Longfei 已提交
53
REGISTER_OP(test_operator, OperatorTest, OperatorTestProtoAndCheckerMaker);
Q
Qiao Longfei 已提交
54

Y
Yu Yang 已提交
55
TEST(OperatorBase, all) {
Q
Qiao Longfei 已提交
56 57
  OpDesc op_desc;
  op_desc.set_type("test_operator");
Y
Yu Yang 已提交
58 59
  *op_desc.mutable_inputs()->Add() = "IN1";
  *op_desc.mutable_outputs()->Add() = "OUT1";
Q
Qiao Longfei 已提交
60 61 62 63 64 65
  auto attr = op_desc.mutable_attrs()->Add();
  attr->set_name("scale");
  attr->set_type(paddle::framework::AttrType::FLOAT);
  float scale = 3.14;
  attr->set_f(scale);

Y
Yu Yang 已提交
66
  platform::CPUDeviceContext device_context;
Q
Qiao Longfei 已提交
67 68 69 70
  auto scope = std::make_shared<Scope>();

  OperatorBase* op = paddle::framework::OpRegistry::CreateOp(op_desc);
  ASSERT_EQ(op->GetAttr<float>("scale"), scale);
Y
Yu Yang 已提交
71 72 73 74
  scope->CreateVariable("OUT1");
  op->Run(scope, device_context);
  std::cout << op->DebugString() << std::endl;
  delete op;
Q
Qiao Longfei 已提交
75 76
}

Q
Qiao Longfei 已提交
77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126
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");
    AddAttr<float>("scale", "scale of cosine op")
        .SetDefault(1.0)
        .LargerThan(0.0);
    AddType("test_operator");
    AddComment("This is test op");
  }
};

class OpWithKernelTest : public OperatorWithKernel {
 public:
  void InferShape(const std::shared_ptr<Scope>& scope) const override {}
};

class CPUKernelTest : public OpKernel {
 public:
  void Compute(const KernelContext& context) const {
    float scale = context.op_.GetAttr<float>("scale");
    ASSERT_NEAR(scale, 3.14, 1e-5);
    std::cout << "this is cpu kernel" << std::endl;
    std::cout << context.op_.DebugString() << std::endl;
  }
};

REGISTER_OP(op_with_kernel, OpWithKernelTest, OpKernelTestProtoAndCheckerMaker);
REGISTER_OP_KERNEL(op_with_kernel, platform::CPUPlace, CPUKernelTest);

TEST(OpKernel, all) {
  OpDesc op_desc;
  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);

  platform::CPUDeviceContext cpu_device_context;
  auto scope = std::make_shared<Scope>();

  OperatorBase* op = paddle::framework::OpRegistry::CreateOp(op_desc);
  op->Run(scope, cpu_device_context);

  delete op;
}
Q
Qiao Longfei 已提交
127 128
}  // namespace framework
}  // namespace paddle