net_op_test.cc 2.0 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;
D
dongzhihong 已提交
16 17 18
  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 已提交
19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
    ++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 已提交
37
  auto net = std::make_shared<NetOp>();
D
dongzhihong 已提交
38 39
  ASSERT_NE(net, nullptr);

Y
Yu Yang 已提交
40 41 42
  auto op1 = std::shared_ptr<TestOp>(
      new TestOp("test", {{"X", {"x"}}, {"W", {"w1"}}, {"b", {"b1"}}},
                 {{"Out", {"y"}}}, {}));
D
dongzhihong 已提交
43 44
  net->AddOp(op1);

Y
Yu Yang 已提交
45 46 47
  auto op2 = std::shared_ptr<TestOp>(
      new TestOp("test", {{"X", {"y"}}, {"W", {"w2"}}, {"b", {"b2"}}},
                 {{"Out", {"z"}}}, {}));
D
dongzhihong 已提交
48 49 50
  net->AddOp(op2);

  net->CompleteAddOp();
Y
Yu Yang 已提交
51
  AssertSameVectorWithoutOrder({"x", "w1", "b1", "w2", "b2"},
52 53
                               net->inputs_.at(NetOp::kAll));
  AssertSameVectorWithoutOrder({"y", "z"}, net->outputs_.at(NetOp::kAll));
D
dongzhihong 已提交
54

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

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

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

Y
Yan Chunwei 已提交
73
}  // namespace operators
D
dongzhihong 已提交
74
}  // namespace paddle