prune_test.cc 4.8 KB
Newer Older
1
/* Copyright (c) 2016 PaddlePaddle Authors. All Rights Reserved.
Y
Yang Yang 已提交
2

L
Luo Tao 已提交
3 4 5
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
Y
Yang Yang 已提交
6

L
Luo Tao 已提交
7
    http://www.apache.org/licenses/LICENSE-2.0
Y
Yang Yang 已提交
8

L
Luo Tao 已提交
9 10 11 12 13
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. */
Y
Yang Yang 已提交
14

Y
Yi Wang 已提交
15
#include "paddle/fluid/framework/prune.h"
Y
Yang Yang 已提交
16

17 18 19
#include <gtest/gtest.h>
#include <string>

Y
Yi Wang 已提交
20 21
#include "paddle/fluid/framework/attribute.h"
#include "paddle/fluid/framework/operator.h"
Y
Yang Yang 已提交
22

Y
Yi Wang 已提交
23 24 25
#include "paddle/fluid/framework/block_desc.h"
#include "paddle/fluid/framework/op_desc.h"
#include "paddle/fluid/framework/program_desc.h"
Y
Yang Yang 已提交
26 27 28 29 30

namespace f = paddle::framework;

void AddOp(const std::string &type, const f::VariableNameMap &inputs,
           const f::VariableNameMap &outputs, f::AttributeMap attrs,
Y
Yu Yang 已提交
31
           paddle::framework::BlockDesc *block) {
Y
Yang Yang 已提交
32 33 34
  // insert output
  for (auto kv : outputs) {
    for (auto v : kv.second) {
Y
Yang Yang 已提交
35
      auto var = block->Var(v);
36
      var->SetDataType(paddle::framework::proto::VarType::FP32);
Y
Yang Yang 已提交
37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
    }
  }

  // insert op
  auto op = block->AppendOp();
  op->SetType(type);
  for (auto &kv : inputs) {
    op->SetInput(kv.first, kv.second);
  }
  for (auto &kv : outputs) {
    op->SetOutput(kv.first, kv.second);
  }
  op->SetAttrMap(attrs);
}

TEST(Prune, one_operator) {
Y
Yu Yang 已提交
53 54
  f::ProgramDesc program;
  f::BlockDesc *block = program.MutableBlock(0);
Y
Yang Yang 已提交
55

Y
Yiqun Liu 已提交
56 57
  AddOp("one_one", {{"input", {"a"}}}, {{"output", {"b"}}}, f::AttributeMap{},
        block);
Y
Yang Yang 已提交
58

59 60
  f::proto::ProgramDesc *pdesc = program.Proto();
  f::proto::ProgramDesc pruned;
Y
Yang Yang 已提交
61

62
  f::Prune(*pdesc, &pruned);
Y
Yang Yang 已提交
63 64 65
  PADDLE_ENFORCE_EQ(pruned.blocks(0).ops_size(), 0);

  pdesc->mutable_blocks(0)->mutable_ops(0)->set_is_target(true);
66
  f::Prune(*pdesc, &pruned);
Y
Yang Yang 已提交
67 68 69
  PADDLE_ENFORCE_EQ(pruned.blocks(0).ops_size(), 1);
}

Y
Yang Yang 已提交
70
TEST(Prune, forward) {
Y
Yu Yang 已提交
71 72
  f::ProgramDesc program;
  f::BlockDesc *block = program.MutableBlock(0);
Y
Yang Yang 已提交
73

Y
Yiqun Liu 已提交
74 75 76 77 78 79 80 81
  AddOp("one_one", {{"input", {"a"}}}, {{"output", {"b"}}}, f::AttributeMap{},
        block);
  AddOp("one_one", {{"input", {"b"}}}, {{"output", {"c"}}}, f::AttributeMap{},
        block);
  AddOp("one_one", {{"input", {"c"}}}, {{"output", {"d"}}}, f::AttributeMap{},
        block);
  AddOp("one_one", {{"input", {"d"}}}, {{"output", {"e"}}}, f::AttributeMap{},
        block);
Y
Yang Yang 已提交
82

83
  f::proto::ProgramDesc *pdesc = program.Proto();
Y
Yang Yang 已提交
84 85

  for (int i = 0; i < pdesc->blocks(0).ops_size(); ++i) {
86
    f::proto::ProgramDesc pruned;
Y
Yang Yang 已提交
87
    pdesc->mutable_blocks(0)->mutable_ops(i)->set_is_target(true);
88
    f::Prune(*pdesc, &pruned);
Y
Yang Yang 已提交
89 90 91 92 93
    PADDLE_ENFORCE_EQ(pruned.blocks(0).ops_size(), i + 1);
  }
}

TEST(Prune, multi_input_op) {
Y
Yu Yang 已提交
94 95
  f::ProgramDesc program;
  f::BlockDesc *block = program.MutableBlock(0);
Y
Yang Yang 已提交
96

Y
Yiqun Liu 已提交
97 98 99
  AddOp("one_one", {{"input", {"a0"}}}, {{"output", {"b0"}}}, f::AttributeMap{},
        block);
  AddOp("one_one", {{"input", {"a1"}}}, {{"output", {"b1"}}}, f::AttributeMap{},
Y
Yang Yang 已提交
100
        block);
Y
Yiqun Liu 已提交
101 102 103 104
  AddOp("one_one", {{"input", {"a2"}}}, {{"output", {"b2"}}}, f::AttributeMap{},
        block);
  AddOp("three_one", {{"input", {"b0", "b1", "b2"}}}, {{"output", {"c"}}},
        f::AttributeMap{}, block);
Y
Yang Yang 已提交
105

106
  f::proto::ProgramDesc *pdesc = program.Proto();
Y
Yang Yang 已提交
107 108
  pdesc->mutable_blocks(0)->mutable_ops(3)->set_is_target(true);

109 110
  f::proto::ProgramDesc pruned;
  f::Prune(*pdesc, &pruned);
Y
Yang Yang 已提交
111 112 113 114
  PADDLE_ENFORCE_EQ(pruned.blocks(0).ops_size(), 4);
}

TEST(Prune, multi_output_op) {
Y
Yu Yang 已提交
115 116
  f::ProgramDesc program;
  f::BlockDesc *block = program.MutableBlock(0);
Y
Yang Yang 已提交
117

Y
Yiqun Liu 已提交
118 119 120 121 122 123
  AddOp("one_two", {{"input", {"a"}}}, {{"output", {"b", "c"}}},
        f::AttributeMap{}, block);
  AddOp("one_one", {{"input", {"b"}}}, {{"output", {"b1"}}}, f::AttributeMap{},
        block);
  AddOp("one_one", {{"input", {"c"}}}, {{"output", {"c1"}}}, f::AttributeMap{},
        block);
Y
Yang Yang 已提交
124

125
  f::proto::ProgramDesc *pdesc = program.Proto();
Y
Yang Yang 已提交
126 127
  pdesc->mutable_blocks(0)->mutable_ops(2)->set_is_target(true);

128 129
  f::proto::ProgramDesc pruned;
  f::Prune(*pdesc, &pruned);
Y
Yang Yang 已提交
130 131
  PADDLE_ENFORCE_EQ(pruned.blocks(0).ops_size(), 2);
}
Y
Yang Yang 已提交
132 133

TEST(Prune, multi_target) {
Y
Yu Yang 已提交
134 135
  f::ProgramDesc program;
  f::BlockDesc *block = program.MutableBlock(0);
Y
Yang Yang 已提交
136

Y
Yiqun Liu 已提交
137 138 139 140 141 142
  AddOp("one_two", {{"input", {"a"}}}, {{"output", {"b", "c"}}},
        f::AttributeMap{}, block);
  AddOp("one_one", {{"input", {"b"}}}, {{"output", {"b1"}}}, f::AttributeMap{},
        block);
  AddOp("one_one", {{"input", {"c"}}}, {{"output", {"c1"}}}, f::AttributeMap{},
        block);
Y
Yang Yang 已提交
143

144
  f::proto::ProgramDesc *pdesc = program.Proto();
Y
Yang Yang 已提交
145 146 147
  pdesc->mutable_blocks(0)->mutable_ops(1)->set_is_target(true);
  pdesc->mutable_blocks(0)->mutable_ops(2)->set_is_target(true);

148 149
  f::proto::ProgramDesc pruned;
  f::Prune(*pdesc, &pruned);
Y
Yang Yang 已提交
150 151
  PADDLE_ENFORCE_EQ(pruned.blocks(0).ops_size(), 3);
}