prune_test.cc 4.4 KB
Newer Older
Y
Yang Yang 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
/* 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/prune.h"

#include "paddle/framework/attribute.h"
#include "paddle/framework/operator.h"
#include "paddle/operators/net_op.h"

Y
Yang Yang 已提交
21 22 23
#include "paddle/framework/block_desc.h"
#include "paddle/framework/op_desc.h"
#include "paddle/framework/program_desc.h"
Y
Yang Yang 已提交
24

Y
Yang Yang 已提交
25
#include <gtest/gtest.h>
Y
Yang Yang 已提交
26 27 28 29 30 31 32 33 34 35

namespace f = paddle::framework;
namespace ops = paddle::operators;

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

  // 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
Yang Yang 已提交
54
  f::ProgramDescBind program;
Y
Yang Yang 已提交
55 56
  f::BlockDescBind *block = program.Block(0);

Y
Yang Yang 已提交
57
  AddOp("one_one", {{"input", {"a"}}}, {{"output", {"b"}}}, {}, block);
Y
Yang Yang 已提交
58 59 60 61

  f::ProgramDesc *pdesc = program.Proto();
  f::ProgramDesc pruned;

Y
Yang Yang 已提交
62
  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);
Y
Yang Yang 已提交
66
  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
Yang Yang 已提交
71
  f::ProgramDescBind program;
Y
Yang Yang 已提交
72 73 74 75 76 77 78 79 80 81 82 83
  f::BlockDescBind *block = program.Block(0);

  AddOp("one_one", {{"input", {"a"}}}, {{"output", {"b"}}}, {}, block);
  AddOp("one_one", {{"input", {"b"}}}, {{"output", {"c"}}}, {}, block);
  AddOp("one_one", {{"input", {"c"}}}, {{"output", {"d"}}}, {}, block);
  AddOp("one_one", {{"input", {"d"}}}, {{"output", {"e"}}}, {}, block);

  f::ProgramDesc *pdesc = program.Proto();

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

TEST(Prune, multi_input_op) {
Y
Yang Yang 已提交
90
  f::ProgramDescBind program;
Y
Yang Yang 已提交
91 92 93 94 95 96 97 98 99 100 101 102
  f::BlockDescBind *block = program.Block(0);

  AddOp("one_one", {{"input", {"a0"}}}, {{"output", {"b0"}}}, {}, block);
  AddOp("one_one", {{"input", {"a1"}}}, {{"output", {"b1"}}}, {}, block);
  AddOp("one_one", {{"input", {"a2"}}}, {{"output", {"b2"}}}, {}, block);
  AddOp("three_one", {{"input", {"b0", "b1", "b2"}}}, {{"output", {"c"}}}, {},
        block);

  f::ProgramDesc *pdesc = program.Proto();
  pdesc->mutable_blocks(0)->mutable_ops(3)->set_is_target(true);

  f::ProgramDesc pruned;
Y
Yang Yang 已提交
103
  Prune(*pdesc, pruned);
Y
Yang Yang 已提交
104 105 106 107
  PADDLE_ENFORCE_EQ(pruned.blocks(0).ops_size(), 4);
}

TEST(Prune, multi_output_op) {
Y
Yang Yang 已提交
108
  f::ProgramDescBind program;
Y
Yang Yang 已提交
109 110 111 112 113 114 115 116 117 118
  f::BlockDescBind *block = program.Block(0);

  AddOp("one_two", {{"input", {"a"}}}, {{"output", {"b", "c"}}}, {}, block);
  AddOp("one_one", {{"input", {"b"}}}, {{"output", {"b1"}}}, {}, block);
  AddOp("one_one", {{"input", {"c"}}}, {{"output", {"c1"}}}, {}, block);

  f::ProgramDesc *pdesc = program.Proto();
  pdesc->mutable_blocks(0)->mutable_ops(2)->set_is_target(true);

  f::ProgramDesc pruned;
Y
Yang Yang 已提交
119
  Prune(*pdesc, pruned);
Y
Yang Yang 已提交
120 121
  PADDLE_ENFORCE_EQ(pruned.blocks(0).ops_size(), 2);
}
Y
Yang Yang 已提交
122 123

TEST(Prune, multi_target) {
Y
Yang Yang 已提交
124
  f::ProgramDescBind program;
Y
Yang Yang 已提交
125 126 127 128 129 130 131 132 133 134 135
  f::BlockDescBind *block = program.Block(0);

  AddOp("one_two", {{"input", {"a"}}}, {{"output", {"b", "c"}}}, {}, block);
  AddOp("one_one", {{"input", {"b"}}}, {{"output", {"b1"}}}, {}, block);
  AddOp("one_one", {{"input", {"c"}}}, {{"output", {"c1"}}}, {}, block);

  f::ProgramDesc *pdesc = program.Proto();
  pdesc->mutable_blocks(0)->mutable_ops(1)->set_is_target(true);
  pdesc->mutable_blocks(0)->mutable_ops(2)->set_is_target(true);

  f::ProgramDesc pruned;
Y
Yang Yang 已提交
136
  Prune(*pdesc, pruned);
Y
Yang Yang 已提交
137 138
  PADDLE_ENFORCE_EQ(pruned.blocks(0).ops_size(), 3);
}