summaryrefslogtreecommitdiff
path: root/runtimes/neurun/src/dumper/dot/DotDumper.cc
blob: 1e53ece191024d9d1ea74596fc284db3f096f3c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
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
112
113
114
115
/*
 * Copyright (c) 2018 Samsung Electronics Co., Ltd. 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 <fstream>

#include "DotDumper.h"
#include "DotBuilder.h"

namespace neurun
{
namespace dumper
{
namespace dot
{

using namespace neurun::graph;

void DotDumper::dumpIfNeeded(const std::string &tag)
{
  if (_option == OPTIONS::DUMP_OFF)
  {
    return;
  }
  neurun::dumper::dot::DotBuilder dot_builder;

  auto &operations = _graph.operations();
  auto &operands = _graph.operands();

  operations.iterate([&](const model::operation::Index &index, const model::operation::Node &node) {
    neurun::dumper::dot::DotNodeInfo node_info(_graph, index, node);

    for (auto output : node.getOutputs())
    {
      using neurun::dumper::dot::DotOperandInfo;
      auto child = std::make_shared<DotOperandInfo>(output, operands.at(output),
                                                    DotOperandInfo::Type::MODEL_OUTPUT);
      node_info.appendChild(child);
    }

    dot_builder.update(node_info);
  });

  operands.iterate([&](const model::operand::Index &index, const model::operand::Object &object) {
    bool showing_cond = false;
    auto usage = object.getUsage();
    if (_option == OPTIONS::SHOW_CONSTANTS)
    {
      showing_cond = object.usageIsDefined();
    }
    else
    {
      showing_cond = (usage == model::operand::OperandUsage::MODEL_INPUT) ||
                     (usage == model::operand::OperandUsage::OPERATION_OUTPUT);
    }
    if (usage != model::operand::OperandUsage::OPERATION_OUTPUT)
    {
      showing_cond = showing_cond && (object.getUses().size() > 0);
    }
    if (showing_cond)
    {
      auto type = [&]() {
        using neurun::dumper::dot::DotOperandInfo;
        if (_graph.getInputs().contains(index))
          return DotOperandInfo::Type::MODEL_INPUT;
        if (_graph.getOutputs().contains(index))
          return DotOperandInfo::Type::MODEL_OUTPUT;
        return DotOperandInfo::Type::INTERNAL;
      }();

      neurun::dumper::dot::DotOperandInfo operand_info(index, object, type);

      for (auto operation_index : object.getUses().list())
      {
        auto &node = operations.at(operation_index);
        auto child =
            std::make_shared<neurun::dumper::dot::DotNodeInfo>(_graph, operation_index, node);
        operand_info.appendChild(child);
      }

      dot_builder.update(operand_info);
    }
  });

  // Dump to file
  {
    std::string file_name;
    file_name += tag;
    file_name += ".dot";
    std::filebuf fb;

    fb.open(file_name, std::ios::out);
    std::ostream os(&fb);

    dot_builder.writeDot(os);

    fb.close();
  }
}

} // namespace dot
} // namespace dumper
} // namespace neurun