aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/contrib/lite/toco/graph_transformations/fuse_activation_functions.cc
diff options
context:
space:
mode:
Diffstat (limited to 'tensorflow/contrib/lite/toco/graph_transformations/fuse_activation_functions.cc')
-rw-r--r--tensorflow/contrib/lite/toco/graph_transformations/fuse_activation_functions.cc98
1 files changed, 98 insertions, 0 deletions
diff --git a/tensorflow/contrib/lite/toco/graph_transformations/fuse_activation_functions.cc b/tensorflow/contrib/lite/toco/graph_transformations/fuse_activation_functions.cc
new file mode 100644
index 0000000000..7a86510025
--- /dev/null
+++ b/tensorflow/contrib/lite/toco/graph_transformations/fuse_activation_functions.cc
@@ -0,0 +1,98 @@
+/* Copyright 2017 The TensorFlow Authors. 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 <memory>
+#include <string>
+#include <unordered_map>
+#include <vector>
+
+#include "tensorflow/contrib/lite/toco/graph_transformations/graph_transformations.h"
+#include "tensorflow/contrib/lite/toco/model.h"
+#include "tensorflow/contrib/lite/toco/runtime/types.h"
+#include "tensorflow/contrib/lite/toco/tooling_util.h"
+#include "tensorflow/core/platform/logging.h"
+
+namespace toco {
+
+bool FuseActivationFunctions::Run(Model* model, std::size_t op_index) {
+ const auto ac_it = model->operators.begin() + op_index;
+ const auto* ac_op = ac_it->get();
+
+ if (ac_op->type != OperatorType::kRelu6 &&
+ ac_op->type != OperatorType::kRelu1 &&
+ ac_op->type != OperatorType::kRelu) {
+ return false;
+ }
+
+ // Find the op producing the array passed to this activation function
+ Operator* op = GetOpWithOutput(*model, ac_op->inputs[0]);
+
+ if (!op) return false;
+
+ if (CountTrueOutputs(*model, *op) > 1) {
+ AddMessageF(
+ "Not fusing activation function into %s because it has more than one "
+ " consumed output",
+ LogName(*op));
+ return false;
+ }
+
+ CHECK_EQ(op->outputs[0], ac_op->inputs[0]);
+
+ int count_ops_consuming_output = CountOpsWithInput(*model, ac_op->inputs[0]);
+ DCHECK_GE(count_ops_consuming_output, 1);
+ if (count_ops_consuming_output > 1) {
+ AddMessageF(
+ "Not fusing activation function into %s because it is consumed by more "
+ "than 1 other operator",
+ LogName(*op));
+ return false;
+ }
+
+ if (op->fused_activation_function != FusedActivationFunctionType::kNone) {
+ AddMessageF(
+ "Not fusing activation function into %s because it already has a fused "
+ "activation function",
+ LogName(*op));
+ return false;
+ }
+
+ // TODO(dkalenichenko): Great many ops don't support activation function
+ // fusing. Switch to the whilelist approach instead.
+ if (op->type == OperatorType::kConcatenation ||
+ op->type == OperatorType::kSlice) {
+ AddMessageF(
+ "Not fusing activation function because the %s op doesn't support it",
+ LogName(*op));
+ return false;
+ }
+
+ AddMessageF("Fusing activation function %s into the preceding %s",
+ LogName(*ac_op), LogName(*op));
+ if (ac_op->type == OperatorType::kRelu6) {
+ op->fused_activation_function = FusedActivationFunctionType::kRelu6;
+ } else if (ac_op->type == OperatorType::kRelu1) {
+ op->fused_activation_function = FusedActivationFunctionType::kRelu1;
+ } else if (ac_op->type == OperatorType::kRelu) {
+ op->fused_activation_function = FusedActivationFunctionType::kRelu;
+ } else {
+ LOG(FATAL) << "Unhandled activation function type";
+ }
+ model->arrays.erase(ac_op->inputs[0]);
+ op->outputs[0] = ac_op->outputs[0];
+ model->operators.erase(ac_it);
+ return true;
+}
+
+} // namespace toco