summaryrefslogtreecommitdiff
path: root/compiler/luci/service/src/ChangeOutputs.cpp
blob: 65175530c9f48e5e0bf65f2fec12c60ce11c3d51 (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
/*
 * Copyright (c) 2021 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 "luci/Service/ChangeOutputs.h"

#include <luci/IR/CircleNode.h>

#include <loco/IR/Graph.h>

#include <oops/UserExn.h>

#include <cassert>
#include <iostream>
#include <map>

namespace
{

luci::CircleNode *find_by_name(loco::Graph *g, const std::string &name)
{
  for (auto node : loco::all_nodes(g))
  {
    auto cnode = loco::must_cast<luci::CircleNode *>(node);
    if (cnode->name() == name)
      return cnode;
  }
  return nullptr;
}

} // namespace

namespace luci
{

void change_outputs(loco::Graph *graph, const std::vector<std::string> &new_outputs)
{
  if (new_outputs.size() != graph->outputs()->size())
  {
    throw oops::UserExn("Change outputs failed: number of outputs should be ",
                        graph->outputs()->size());
  }

  std::map<std::string, luci::CircleNode *> named_nodes;

  for (auto &node_name : new_outputs)
  {
    auto node = find_by_name(graph, node_name);
    if (node == nullptr)
    {
      throw oops::UserExn("Change outputs failed: node not found: ", node_name);
    }
    named_nodes[node_name] = node;
  }
  // just to be sure
  assert(graph->outputs()->size() == named_nodes.size());

  for (uint32_t out = 0; out < graph->outputs()->size(); ++out)
  {
    auto output = luci::output_node(graph, out); // output is CircleOutput
    assert(output != nullptr);

    auto &node_name = new_outputs.at(out);
    auto node = named_nodes[node_name];
    assert(node != nullptr);

    output->from(node);

    // update GraphOutput shape, dtype to node
    auto graph_out = graph->outputs()->at(out);
    auto output_shape = std::make_unique<loco::TensorShape>();

    output_shape->rank(node->rank());
    for (uint32_t r = 0; r < node->rank(); ++r)
    {
      if (node->dim(r).known())
        output_shape->dim(r).set(node->dim(r).value());
      else
        output_shape->dim(r).unset();
    }
    graph_out->shape(std::move(output_shape));
    graph_out->dtype(node->dtype());
  }
}

} // namespace luci