program_optimize.cpp 10.2 KB
Newer Older
L
liuruilong 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14
/* Copyright (c) 2018 PaddlePaddle Authors. All Rights Reserved.

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. */

L
liuruilong 已提交
15
#include "framework/program/program-optimize/program_optimize.h"
D
dolphin8 已提交
16
#include <algorithm>
17
#include <utility>
D
dolphin8 已提交
18
#include "framework/program/program-optimize/fusion_op_register.h"
L
liuruilong 已提交
19 20 21 22 23

namespace paddle_mobile {

namespace framework {

L
liuruilong 已提交
24
std::shared_ptr<ProgramDesc> ProgramOptimize::FusionOptimize(
L
liuruilong 已提交
25
    std::shared_ptr<ProgramDesc> ori_des, bool add_split) {
L
liuruilong 已提交
26 27
  std::shared_ptr<ProgramDesc> optimize_program =
      std::make_shared<ProgramDesc>(*ori_des);
L
liuruilong 已提交
28
  current_block_ = optimize_program->Blocks().size();
L
liuruilong 已提交
29 30 31

  for (int i = 0; i < optimize_program->Blocks().size(); ++i) {
    std::unordered_map<std::string, std::shared_ptr<Node>> output_nodes;
32 33 34 35 36
    std::unordered_map<
        std::string,
        std::vector<
            std::pair<std::shared_ptr<Node>,
                      std::unordered_map<std::string, std::shared_ptr<Node>>>>>
L
liuruilong 已提交
37
        type_map;
L
liuruilong 已提交
38
    std::vector<std::shared_ptr<Node>> nodes;
L
liuruilong 已提交
39
    std::shared_ptr<Node> begin_node;
40

L
liuruilong 已提交
41 42 43 44 45 46 47 48
    auto block = optimize_program->Block(i);
    for (int j = 0; j < block->Ops().size(); ++j) {
      auto op = block->Ops()[j];
      std::shared_ptr<Node> node = std::make_shared<Node>(op);
      if (j == 0) {
        begin_node = node;
      }

49 50 51 52 53 54 55 56 57 58
      const std::string op_type = op->Type();
      nodes.push_back(node);
      type_map[op_type].push_back({node, output_nodes});
      const VariableNameMap &op_inputs = op->GetInputs();
      const VariableNameMap &op_outpus = op->GetOutputs();

      for (const auto &input : op_inputs) {
        for (const auto &input_name : input.second) {
          if (output_nodes.find(input_name) != output_nodes.end()) {
            auto input_node = output_nodes[input_name];
L
liuruilong 已提交
59 60 61 62 63
            *input_node > node;
          }
        }
      }

64 65 66
      for (const auto &output : op_outpus) {
        for (const auto &output_name : output.second) {
          output_nodes[output_name] = node;
L
liuruilong 已提交
67 68 69 70 71
        }
      }
    }

    for (auto &registed : FusionOpRegister::Instance()->Matchers()) {
L
liuruilong 已提交
72 73
      std::string fusion_type = registed->Type();
      std::shared_ptr<FusionOpMatcher> matcher = registed;
L
liuruilong 已提交
74 75 76

      auto match_vector = type_map[matcher->BeginType()];

77 78 79 80 81
      for (auto &match_node_pair : match_vector) {
        auto match_node = match_node_pair.first;

        auto node_has = match_node_pair.second;

L
liuruilong 已提交
82 83
        auto depth = matcher->BeginNode().Depth();
        auto sub_node = match_node->To(depth);
84
        //  DLOG << " sub node: " << *sub_node;
L
liuruilong 已提交
85
        if (*sub_node == matcher->BeginNode()) {
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
          bool can_folder = true;

          auto relationship_map = sub_node->Relationship();

          for (auto to_check : matcher->NeedCheck()) {
            auto nodes = (*sub_node)[to_check.first];
            for (auto node : nodes) {
              auto inputs_to_check =
                  node->OpDescOfNode()->Input(to_check.second);

              for (auto input_to_check : inputs_to_check) {
                if (node_has.find(input_to_check) == node_has.end()) {
                  if (relationship_map.find(input_to_check) ==
                      relationship_map.end()) {
                    can_folder = false;
                  } else {
                  }
                }
              }
            }
          }

          if (!can_folder) {
            continue;
          }

L
liuruilong 已提交
112 113
          std::vector<std::shared_ptr<Node>> removed_nodes;
          matcher->FolderNodes(match_node.get(), &removed_nodes);
114 115
          for (int k = removed_nodes.size() - 1; k >= 0; --k) {
            auto removed_node = removed_nodes[k];
L
liuruilong 已提交
116 117
            auto removed_ite =
                std::find(nodes.begin(), nodes.end(), removed_node);
118 119 120
            if (removed_ite != nodes.end()) {
              nodes.erase(removed_ite);
            }
L
liuruilong 已提交
121
          }
L
liuruilong 已提交
122 123 124 125
        }
      }
    }

L
liuruilong 已提交
126
    std::vector<std::shared_ptr<framework::OpDesc>> op_descs;
L
liuruilong 已提交
127 128 129 130 131 132 133
    if (add_split) {
      GenerateOps(&op_descs, begin_node.get(), add_split);
    } else {
      for (int m = 0; m < nodes.size(); ++m) {
        auto &node = nodes[m];
        op_descs.push_back(node->op_desc_);
      }
L
liuruilong 已提交
134
    }
L
liuruilong 已提交
135 136 137 138 139 140 141
    block->ops_ = op_descs;
  }

  for (int m = 0; m < new_blocks_.size(); ++m) {
    std::shared_ptr<BlockDesc> new_block = new_blocks_[m];
    new_block->index_ = m + ori_des->blocks_.size();
    optimize_program->blocks_.push_back(new_block);
L
liuruilong 已提交
142
  }
L
liuruilong 已提交
143
  return optimize_program;
L
liuruilong 已提交
144
}
L
liuruilong 已提交
145

L
liuruilong 已提交
146
void ProgramOptimize::GenerateOps(
L
liuruilong 已提交
147 148
    std::vector<std::shared_ptr<framework::OpDesc>> *op_desc, Node *input_node,
    Node *current_node) {
L
liuruilong 已提交
149 150
  if (current_node->inputs_.size() > 1 &&
      input_node != current_node->inputs_.back()) {
151
    DLOG << " current type " << current_node->Type();
L
liuruilong 已提交
152 153 154 155

    DLOG << " inputs size of current node > 0 ";

    for (int i = 0; i < current_node->inputs_.size(); ++i) {
156
      DLOG << " input i: " << current_node->inputs_[i]->Type();
L
liuruilong 已提交
157 158
    }

L
liuruilong 已提交
159 160 161 162 163 164 165 166 167 168 169 170 171 172
    return;
  } else if (current_node->inputs_.size() > 1 &&
             input_node == current_node->inputs_.back()) {
    op_desc->push_back(current_node->op_desc_);
  } else {
    op_desc->push_back(current_node->op_desc_);
  }

  for (int i = 0; i < current_node->outputs_.size(); ++i) {
    auto &output = current_node->outputs_[i];
    GenerateOps(op_desc, current_node, output.get());
  }
}

L
liuruilong 已提交
173 174 175 176
void ProgramOptimize::GenerateOps(
    std::vector<std::shared_ptr<framework::OpDesc>> *op_desc, Node *input_node,
    Node *current_node, bool adding_thread, int thread_num,
    std::shared_ptr<BlockDesc> new_block) {
L
liuruilong 已提交
177 178 179 180 181
  if (current_node->outputs_.size() > 1) {
    adding_thread = false;
  }

  bool can_add_split = false;
182 183 184
  const auto current_desc = current_node->OpDescOfNode();
  const VariableNameMap &current_op_inputs = current_desc->GetInputs();
  const VariableNameMap &current_op_outputs = current_desc->GetOutputs();
L
liuruilong 已提交
185
  // 如果当前节点有多个输出 并且 只有当前节点对应的 op_desc_ 输出数为 1 时支持
186
  if (current_node->outputs_.size() > 1 && current_op_outputs.size() == 1) {
L
liuruilong 已提交
187 188 189 190 191 192 193 194 195 196 197 198 199 200
    can_add_split = true;

    // 遍历当前节点的 output 节点
    for (const auto &output : current_node->outputs_) {
      // 不支持 output 有多个 output 的情况
      if (output->outputs_.size() > 1) {
        DLOG << "don't support multi output of output";
        can_add_split = false;
        break;
      }

      //与节点关联的 OpDesc
      std::shared_ptr<framework::OpDesc> &op_desc = output->op_desc_;
      //获取这个 op 的 inputs key 和 outputs key
201 202
      const VariableNameMap &op_inputs = op_desc->GetInputs();
      const VariableNameMap &op_outputs = op_desc->GetOutputs();
L
liuruilong 已提交
203 204 205

      //判断现在 是否存在这个 op
      //判断这个 output 和 input key 的 size 等于 1
206 207 208
      if (op_outputs.size() == 1 && op_inputs.size() == 1) {
        auto inputs_of_output = op_inputs.begin()->second;
        auto outputs_of_output = op_outputs.begin()->second;
L
liuruilong 已提交
209 210 211 212 213 214 215 216 217 218 219 220 221 222

        // 判断一下, 如果输入和输出没有同名, 是支持的
        for (int i = 0; i < inputs_of_output.size(); ++i) {
          std::string input_of_output = inputs_of_output[i];
          for (int j = 0; j < outputs_of_output.size(); ++j) {
            std::string output_of_output = outputs_of_output[j];
            if (input_of_output == output_of_output) {
              DLOG << "output的 output 包含 input" << input_of_output;
              can_add_split = false;
              break;
            }
          }
        }
      } else {  // 如果模型中包含没有的 op, 则不支持添加 split
223
        DLOG << "找不到 这个 op 类型: " << output->op_desc_->Type();
L
liuruilong 已提交
224 225 226 227 228
        can_add_split = false;
      }
    }
  }

L
liuruilong 已提交
229 230
  if (current_node->inputs_.size() > 1 &&
      input_node != current_node->inputs_.back()) {
L
liuruilong 已提交
231
    return;
L
liuruilong 已提交
232 233
  } else if (current_node->inputs_.size() > 1 &&
             input_node == current_node->inputs_.back()) {
L
liuruilong 已提交
234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256
    new_block.reset();
    adding_thread = false;
    op_desc->push_back(current_node->op_desc_);
  } else {
    if (new_block.get() && adding_thread) {
      new_block->ops_.push_back(current_node->op_desc_);
    } else {
      op_desc->push_back(current_node->op_desc_);
    }
  }
  if (adding_thread) {
    Attribute attr;
    attr.Set<int>(thread_num);
    current_node->op_desc_->attrs_["thread"] = attr;
  }

  if (can_add_split) {
    new_block = std::make_shared<BlockDesc>();
    new_block->multi_thread_ = true;
    new_block->index_ = current_block_;
    new_blocks_.push_back(new_block);

    adding_thread = true;
L
liuruilong 已提交
257
    std::shared_ptr<OpDesc> split_op_desc = std::make_shared<OpDesc>();
L
liuruilong 已提交
258 259
    split_op_desc->type_ = G_OP_TYPE_SPLIT;
    auto outputs = current_node->op_desc_->Output(
L
liuruilong 已提交
260
        op_input_output_key[current_node->op_desc_->Type()].second[0]);
L
liuruilong 已提交
261
    split_op_desc->inputs_ = {
L
liuruilong 已提交
262
        {op_input_output_key[G_OP_TYPE_SPLIT].first[0], outputs}};
L
liuruilong 已提交
263
    auto &split_outputs =
L
liuruilong 已提交
264
        split_op_desc->outputs_[op_input_output_key[G_OP_TYPE_SPLIT].second[0]];
L
liuruilong 已提交
265 266 267 268 269 270 271 272 273 274 275 276 277 278 279
    for (const auto &output : current_node->outputs_) {
      split_outputs.push_back(outputs[0]);
    }

    Attribute attr;
    attr.Set<int>(current_block_);
    split_op_desc->attrs_["block_id"] = attr;

    op_desc->push_back(split_op_desc);
    current_block_++;
  }

  for (int i = 0; i < current_node->outputs_.size(); ++i) {
    auto &output = current_node->outputs_[i];
    if (can_add_split) {
L
liuruilong 已提交
280 281
      GenerateOps(op_desc, current_node, output.get(), adding_thread, i,
                  new_block);
L
liuruilong 已提交
282
    } else {
L
liuruilong 已提交
283 284
      GenerateOps(op_desc, current_node, output.get(), adding_thread,
                  thread_num, new_block);
L
liuruilong 已提交
285 286 287 288
    }
  }
}

L
liuruilong 已提交
289
void ProgramOptimize::GenerateOps(
L
liuruilong 已提交
290 291
    std::vector<std::shared_ptr<framework::OpDesc>> *op_descs, Node *begin_node,
    bool can_add_split) {
L
liuruilong 已提交
292
  if (can_add_split) {
L
liuruilong 已提交
293 294 295 296
    this->GenerateOps(op_descs, begin_node, begin_node, false, -1, nullptr);
  } else {
    this->GenerateOps(op_descs, begin_node, begin_node);
  }
L
liuruilong 已提交
297 298
}

L
liuruilong 已提交
299 300
}  // namespace framework
}  // namespace paddle_mobile