summaryrefslogtreecommitdiff
path: root/compiler/moco-tf/src/Canonicalization/SqueezeCanonicalizer.cpp
blob: a3fcc3b47b743ec0707fc8b0190e7820e22bebee (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
/*
 * 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 "SqueezeCanonicalizer.h"

#include "Annotations/ShapeInferenceData.h"

#include "Dialect/TFDialect.h"
#include "Dialect/TFNodes.h"
#include "Dialect/TFNodeVisitor.h"
#include "Dialect/TFNodeImpl.h"

#include <moco/Log.h>

namespace
{

bool canonicalize_squeeze_to_reshape(loco::Graph *graph, moco::tf::TFSqueeze *node)
{
  LOGGER(l);

  INFO(l) << "TFNodeCanonicalize TFSqueeze begin";

  /**
   * This will replace shape inferred TFSqueeze node into canonical FixedReshape
   *
   * Before
   *           In ---- TFSqueeze ---- Out(s)
   *
   * After
   *             ------ TFSqueeze
   *            /
   *           In ---- FixedReshape ----- Out(s)
   */

  auto squeeze_shape = node->annot<moco::tf::ShapeInferenceData>();
  // canonicalize into FixedReshape is valid when squeeze has shape info
  // TODO Support general Squeeze case
  assert(squeeze_shape);

  auto squeeze_tensor_shape = squeeze_shape->tensor_shape();

  // Create loco node to replace
  auto reshape = graph->nodes()->create<loco::FixedReshape>();

  // Copy shape
  reshape->rank(squeeze_tensor_shape.rank());
  for (uint32_t axis = 0; axis < squeeze_tensor_shape.rank(); ++axis)
  {
    assert(squeeze_tensor_shape.dim(axis).known());
    reshape->dim(axis) = squeeze_tensor_shape.dim(axis);
  }

  // replace
  auto in = node->input();
  reshape->input(in);
  replace(node).with(reshape);

  INFO(l) << "TFNodeCanonicalize TFSqueeze done";

  return true;
}

} // namespace

namespace moco
{
namespace tf
{

bool SqueezeCanonicalizer::run(loco::Graph *graph)
{
  auto active_nodes = loco::active_nodes(loco::output_nodes(graph));
  bool changed = false;

  for (auto node : active_nodes)
  {
    if (node->dialect() == TFDialect::get())
    {
      auto tf_squeeze = dynamic_cast<moco::tf::TFSqueeze *>(node);
      if (tf_squeeze != nullptr)
      {
        if (canonicalize_squeeze_to_reshape(graph, tf_squeeze))
          changed = true;
      }
    }
  }

  return changed;
}

} // namespace tf
} // namespace moco