summaryrefslogtreecommitdiff
path: root/compiler/moco/pass/src/Passes/SqueezeReduceNode.cpp
diff options
context:
space:
mode:
authorChunseok Lee <chunseok.lee@samsung.com>2020-12-14 14:43:04 +0900
committerChunseok Lee <chunseok.lee@samsung.com>2020-12-14 14:43:04 +0900
commit12d88feea8573f8490629cf62fc342b152e57d65 (patch)
tree3c734cc4d629834d2d523f4575ef84cd64684e57 /compiler/moco/pass/src/Passes/SqueezeReduceNode.cpp
parentd6b371e095d737922187a518b8faba1ef6f3a2b1 (diff)
downloadnnfw-12d88feea8573f8490629cf62fc342b152e57d65.tar.gz
nnfw-12d88feea8573f8490629cf62fc342b152e57d65.tar.bz2
nnfw-12d88feea8573f8490629cf62fc342b152e57d65.zip
Imported Upstream version 1.11.0upstream/1.11.0
Diffstat (limited to 'compiler/moco/pass/src/Passes/SqueezeReduceNode.cpp')
-rw-r--r--compiler/moco/pass/src/Passes/SqueezeReduceNode.cpp105
1 files changed, 105 insertions, 0 deletions
diff --git a/compiler/moco/pass/src/Passes/SqueezeReduceNode.cpp b/compiler/moco/pass/src/Passes/SqueezeReduceNode.cpp
new file mode 100644
index 000000000..0d9686328
--- /dev/null
+++ b/compiler/moco/pass/src/Passes/SqueezeReduceNode.cpp
@@ -0,0 +1,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