dfg_graphviz_draw_pass.cc 1.9 KB
Newer Older
Y
Yan Chunwei 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
/* 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. */

#include "paddle/fluid/inference/analysis/dfg_graphviz_draw_pass.h"

namespace paddle {
namespace inference {
namespace analysis {

21 22
int DFG_GraphvizDrawPass::counter_{0};

Y
Yan Chunwei 已提交
23 24
void DFG_GraphvizDrawPass::Run(DataFlowGraph *graph) {
  auto content = Draw(graph);
25 26
  auto dot_path = GenDotPath();
  std::ofstream file(dot_path);
Y
Yan Chunwei 已提交
27 28
  file.write(content.c_str(), content.size());
  file.close();
29 30 31 32 33

  auto png_path = dot_path.substr(0, dot_path.size() - 4) + ".png";
  std::string message;
  LOG(INFO) << "draw to " << png_path;
  ExecShellCommand("dot -Tpng " + dot_path + " -o " + png_path, &message);
Y
Yan Chunwei 已提交
34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
}

std::string DFG_GraphvizDrawPass::Draw(DataFlowGraph *graph) {
  Dot dot;
  // Add nodes
  for (size_t i = 0; i < graph->nodes.size(); i++) {
    const Node &node = graph->nodes.Get(i);
    if (config_.display_deleted_node || !node.deleted()) {
      dot.AddNode(node.repr(), node.dot_attrs());
    }
  }
  // Add edges
  for (size_t i = 0; i < graph->nodes.size(); i++) {
    const Node &node = graph->nodes.Get(i);
    if (!config_.display_deleted_node && node.deleted()) continue;
N
nhzlx 已提交
49 50 51
    for (auto &out : node.outlinks) {
      if (!config_.display_deleted_node && out->deleted()) continue;
      dot.AddEdge(node.repr(), out->repr(), {});
Y
Yan Chunwei 已提交
52 53 54 55 56 57 58 59
    }
  }
  return dot.Build();
}

}  // namespace analysis
}  // namespace inference
}  // namespace paddle