Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cleanup & TC added l2_norm graph transformation. #27616

Merged
merged 1 commit into from Apr 24, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Expand Up @@ -25,20 +25,6 @@ limitations under the License.

namespace toco {

namespace {

std::vector<std::unique_ptr<Operator>>::iterator FindOperator(
Model* model, const Operator* op) {
auto it = model->operators.begin();
for (; it != model->operators.end(); ++it) {
if (it->get() == op) {
break;
}
}
return it;
}
} // namespace

::tensorflow::Status IdentifyL2Normalization::Run(Model* model,
std::size_t op_index,
bool* modified) {
Expand Down Expand Up @@ -150,7 +136,7 @@ ::tensorflow::Status IdentifyL2Normalization::Run(Model* model,
AddMessageF("Creating %s replacing equivalent subgraph", LogName(*l2norm_op));

// Erase the subgraph that is now replaced by L2Normalization
model->operators.erase(FindOperator(model, square_op));
model->operators.erase(FindOp(*model, square_op));
DeleteOpAndArraysIfUnused(model, sum_op);
if (add_op) {
DeleteOpAndArraysIfUnused(model, add_op);
Expand Down
12 changes: 12 additions & 0 deletions tensorflow/lite/toco/graph_transformations/tests/BUILD
Expand Up @@ -41,6 +41,18 @@ tf_cc_test(
],
)

tf_cc_test(
name = "identify_l2_normalization_test",
srcs = ["identify_l2_normalization_test.cc"],
deps = [
"//tensorflow/lite/toco:graph_transformations",
"//tensorflow/lite/toco:model",
"//tensorflow/lite/toco:tooling_util",
"@com_google_absl//absl/memory",
"@com_google_googletest//:gtest_main",
],
)

tf_cc_test(
name = "fuse_binary_into_following_affine_test",
srcs = ["fuse_binary_into_following_affine_test.cc"],
Expand Down
@@ -0,0 +1,141 @@
/* Copyright 2018 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 <tuple>
#include <vector>

#include <gtest/gtest.h>
#include "absl/memory/memory.h"
#include "tensorflow/lite/toco/graph_transformations/graph_transformations.h"
#include "tensorflow/lite/toco/model.h"
#include "tensorflow/lite/toco/tooling_util.h"

namespace toco {

namespace {

void RunIdentifyL2Normalization(const std::vector<float>& input,
const std::vector<int>& input_shape,
const std::vector<int>& output_shape,
const bool div_square = false) {
Model model;
Array& input0 = model.GetOrCreateArray("input0");
Array& output = model.GetOrCreateArray("output");

*input0.mutable_shape()->mutable_dims() = input_shape;
input0.data_type = ArrayDataType::kFloat;
input0.GetMutableBuffer<ArrayDataType::kFloat>().data = input;

*output.mutable_shape()->mutable_dims() = output_shape;

auto sq_op = new TensorFlowSquareOperator;
sq_op->inputs = {"input0"};
sq_op->outputs = {"output"};

Array& sumoutput = model.GetOrCreateArray("Sumoutput");
*sumoutput.mutable_shape()->mutable_dims() = output_shape;

auto sum_op = new TensorFlowSumOperator;
sum_op->inputs = {sq_op->outputs[0]};
sum_op->outputs = {"Sumoutput"};

if (div_square) {
Array& sqrtoutput = model.GetOrCreateArray("squarertoutput");
*sqrtoutput.mutable_shape()->mutable_dims() = output_shape;

auto sqrt_op = new TensorFlowSqrtOperator;
sqrt_op->inputs = {sum_op->outputs[0]};
sqrt_op->outputs = {"squarertoutput"};

Array& divoutput = model.GetOrCreateArray("Divoutput");
*divoutput.mutable_shape()->mutable_dims() = output_shape;

auto div_op = new DivOperator;
div_op->inputs = {"input0", sqrt_op->outputs[0]};
div_op->outputs = {"Divoutput"};

/*Stack everything with the model*/
model.operators.push_back(std::unique_ptr<Operator>(div_op));
model.operators.push_back(std::unique_ptr<Operator>(sqrt_op));
model.operators.push_back(std::unique_ptr<Operator>(sum_op));
model.operators.push_back(std::unique_ptr<Operator>(sq_op));
} else {
Array& rsqoutput = model.GetOrCreateArray("Rsquareoutput");
*rsqoutput.mutable_shape()->mutable_dims() = output_shape;

auto rsqrt_op = new TensorFlowRsqrtOperator;
rsqrt_op->inputs = {sum_op->outputs[0]};
rsqrt_op->outputs = {"Rsquareoutput"};

Array& muloutput = model.GetOrCreateArray("Muloutput");
*muloutput.mutable_shape()->mutable_dims() = output_shape;

auto mul_op = new MulOperator;
mul_op->inputs = {"input0", rsqrt_op->outputs[0]};
mul_op->outputs = {"Muloutput"};

/*Stack everything with the model*/
model.operators.push_back(std::unique_ptr<Operator>(mul_op));
model.operators.push_back(std::unique_ptr<Operator>(rsqrt_op));
model.operators.push_back(std::unique_ptr<Operator>(sum_op));
model.operators.push_back(std::unique_ptr<Operator>(sq_op));
}

bool modified;
ASSERT_TRUE(IdentifyL2Normalization().Run(&model, 0, &modified).ok());
for (auto& op_it : model.operators) {
Operator* op = op_it.get();
// Since the optimization has kicked in we should not find any
// Mul, Rsqrt, Add, Sqr operators
if (div_square) {
EXPECT_FALSE(op->type == OperatorType::kDiv);
EXPECT_FALSE(op->type == OperatorType::kSqrt);
} else {
EXPECT_FALSE(op->type == OperatorType::kMul);
EXPECT_FALSE(op->type == OperatorType::kRsqrt);
}
EXPECT_FALSE(op->type == OperatorType::kAdd);
EXPECT_FALSE(op->type == OperatorType::kSquare);
}
}

// Test for reverse input in Min
TEST(IdentifyL2Normalization, MulRsqrtTest) {
RunIdentifyL2Normalization(
// Input data
{3, 1, 4, 1, -5, 9, -2, 6, 5, 3, 5, 8},

// Input shape
{3, 4},

{3, 4},

false);
}

TEST(IdentifyL2Normalization, DivSqrtNormTest) {
RunIdentifyL2Normalization(
// Input data
{3, 1, 4, 1, -5, 9, -2, 6, 5, 3, 5, 8},

// Input shape
{3, 4},

{3, 4},

true);
}

} // namespace
} // namespace toco