net_op_test.cc 2.6 KB
Newer Older
Y
Yan Chunwei 已提交
1 2
#include "paddle/operators/net_op.h"

Q
Qiao Longfei 已提交
3
#include <gtest/gtest.h>
Y
Yan Chunwei 已提交
4

D
dongzhihong 已提交
5
namespace paddle {
Y
Yan Chunwei 已提交
6
namespace operators {
D
dongzhihong 已提交
7 8
using Scope = framework::Scope;
using DeviceContext = platform::DeviceContext;
Q
Qiao Longfei 已提交
9 10 11 12

static int infer_shape_cnt = 0;
static int run_cnt = 0;

D
dongzhihong 已提交
13
class TestOp : public framework::OperatorBase {
14
 public:
Y
Yu Yang 已提交
15
  using framework::OperatorBase::OperatorBase;
Y
Yu Yang 已提交
16
  DEFINE_OP_CLONE_METHOD(TestOp);
D
dongzhihong 已提交
17 18 19
  void InferShape(const Scope& scope) const override { ++infer_shape_cnt; }
  void Run(const Scope& scope,
           const platform::DeviceContext& dev_ctx) const override {
Q
Qiao Longfei 已提交
20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
    ++run_cnt;
  }
};

template <typename T>
void AssertSameVectorWithoutOrder(const std::vector<T>& expected,
                                  const std::vector<T>& actual) {
  ASSERT_EQ(expected.size(), actual.size());
  std::unordered_set<T> expected_set;
  for (auto& tmp : expected) {
    expected_set.insert(tmp);
  }
  for (auto& act : actual) {
    ASSERT_NE(expected_set.end(), expected_set.find(act));
  }
}

TEST(OpKernel, all) {
Y
Yu Yang 已提交
38
  auto net = std::make_shared<NetOp>();
D
dongzhihong 已提交
39 40
  ASSERT_NE(net, nullptr);

Y
Yu Yang 已提交
41
  net->AppendOp(std::unique_ptr<TestOp>(
Y
Yu Yang 已提交
42
      new TestOp("test", {{"X", {"x"}}, {"W", {"w1"}}, {"b", {"b1"}}},
Y
Yu Yang 已提交
43
                 {{"Out", {"y"}}}, {})));
Y
Yu Yang 已提交
44
  net->AppendOp(std::unique_ptr<TestOp>(
Y
Yu Yang 已提交
45
      new TestOp("test", {{"X", {"y"}}, {"W", {"w2"}}, {"b", {"b2"}}},
Y
Yu Yang 已提交
46
                 {{"Out", {"z"}}}, {})));
D
dongzhihong 已提交
47 48

  net->CompleteAddOp();
Y
Yu Yang 已提交
49
  AssertSameVectorWithoutOrder({"x", "w1", "b1", "w2", "b2"},
Q
qiaolongfei 已提交
50 51
                               net->Inputs(NetOp::kAll));
  AssertSameVectorWithoutOrder({"y", "z"}, net->Outputs(NetOp::kAll));
D
dongzhihong 已提交
52

53
  auto final_outs = net->OutputVars(false);
D
dongzhihong 已提交
54

55 56
  ASSERT_EQ(final_outs.size(), 1UL);
  ASSERT_EQ(final_outs[0], "z");
D
dongzhihong 已提交
57 58
}

Y
Yan Chunwei 已提交
59
TEST(NetOp, insert_op) {
Y
Yu Yang 已提交
60
  NetOp net;
Y
Yu Yang 已提交
61
  auto op1 = std::unique_ptr<framework::NOP>(
F
fengjiayi 已提交
62 63
      new framework::NOP("empty", {{"X", {"x"}}, {"W", {"w1"}}, {"b", {"b1"}}},
                         {{"Out", {"y"}}}, {}));
Y
Yu Yang 已提交
64
  net.AppendOp(*op1);
Y
Yu Yang 已提交
65
  net.InsertOp(0, *op1);
Y
Yu Yang 已提交
66
  ASSERT_EQ(2UL, net.ops_.size());
Y
Yu Yang 已提交
67
  net.InsertOp(2, std::move(op1));
Y
Yu Yang 已提交
68 69
  ASSERT_EQ(3UL, net.ops_.size());
}
D
dongzhihong 已提交
70

Y
Yu Yang 已提交
71 72
TEST(NetOp, Clone) {
  NetOp net;
Y
Yu Yang 已提交
73
  net.AppendOp(
Y
Yu Yang 已提交
74
      std::unique_ptr<framework::NOP>(new framework::NOP{"empty", {}, {}, {}}));
Y
Yu Yang 已提交
75
  net.AppendOp(std::unique_ptr<framework::NOP>(
76
      new framework::NOP{"empty2", {}, {}, {}}));
Y
Yu Yang 已提交
77
  net.CompleteAddOp(true);
Y
Yu Yang 已提交
78
  auto new_net_op = net.Clone();
Y
Yu Yang 已提交
79 80
  ASSERT_NE(new_net_op, nullptr);
  ASSERT_TRUE(new_net_op->IsNetOp());
Y
Yu Yang 已提交
81
  auto* new_net = static_cast<NetOp*>(new_net_op.get());
Y
Yu Yang 已提交
82 83 84 85 86
  ASSERT_EQ(2, new_net->ops_.size());
  ASSERT_EQ(new_net->ops_[0]->Type(), "empty");
  ASSERT_EQ(new_net->ops_[1]->Type(), "empty2");
}

Y
Yan Chunwei 已提交
87
}  // namespace operators
D
dongzhihong 已提交
88
}  // namespace paddle