summaryrefslogtreecommitdiff
path: root/compiler/moco/pass/src/Passes/SqueezeReduceNode.cpp
blob: 0d968632805de307d5a9bae4a37ffe4bcd211849 (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
/*
 * Copyright (c) 2019 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 "moco/Pass/Passes/SqueezeReduceNode.h"

#include <moco/Support/NodeAs.h>

#include <moco/IR/Nodes/TFConst.h>
#include <moco/IR/Nodes/TFSqueeze.h>
#include <moco/IR/Nodes/TFMean.h>

#include <cassert>

namespace
{

/**
 * WHEN:
 *   - Reduce operations do not keep dimensions
 * DO:
 *   - Replace original ReduceTypeOp to new ReduceTypeOp, which 'keep_dims' attribute is true
 *   - Insert TFSqueeze after new ReduceTypeOp
 *
 *
 * <Before>
 *     in ---- ReduceTypeOp:0 (keep_dims = false) --- out(s)
 *
 * <After>
 *         --- ReduceTypeOp:0 (keep_dims = false)
 *        /
 *     in ---- ReduceTypeOp:1 (keep_dims = true) ---- TFSqueeze --- out(s)
 *
 * <Where>
 *  - 'keep_dims' attribute of ReduceTypeOp:0 is false
 *
 */
template <class TFNode> bool squeeze_reduce_node(loco::Graph *graph, TFNode *reduce_node)
{
  // Don't need to squeeze reduce node
  if (reduce_node->keep_dims())
    return false;

  // Reduction indices are not yet constant
  auto const_reduction_indices = dynamic_cast<moco::TFConst *>(reduce_node->reduction_indices());
  if (const_reduction_indices == nullptr)
    return false;

  auto squeeze_node = graph->nodes()->create<moco::TFSqueeze>();
  auto new_reduce_node = graph->nodes()->create<TFNode>();

  new_reduce_node->input(reduce_node->input());
  new_reduce_node->reduction_indices(reduce_node->reduction_indices());
  new_reduce_node->keep_dims(true);

  // Insert squeeze dims
  // TODO Support S64 type
  assert(const_reduction_indices->dtype() == loco::DataType::S32);

  std::vector<int64_t> reduction_values;
  for (uint32_t i = 0; i < const_reduction_indices->size<loco::DataType::S32>(); ++i)
    reduction_values.push_back(const_reduction_indices->at<loco::DataType::S32>(i));
  squeeze_node->squeeze_dims(reduction_values);

  // replace
  loco::replace(reduce_node).with(squeeze_node);
  squeeze_node->input(new_reduce_node);

  return true;
}

} // namespace

namespace moco
{

bool SqueezeReduceNode::run(loco::Graph *graph)
{
  bool changed = false;
  for (auto node : loco::active_nodes(loco::output_nodes(graph)))
  {
    if (auto shape_node = as<moco::TFMean>(node))
    {
      if (squeeze_reduce_node(graph, shape_node))
        changed = true;
    }
    // TODO Add more reduce type operations
  }

  return changed;
}

} // namespace moco