/* Copyright 2015 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 "tensorflow/cc/ops/const_op.h" #include "tensorflow/cc/ops/image_ops.h" #include "tensorflow/cc/ops/nn_ops.h" #include "tensorflow/cc/ops/sendrecv_ops.h" #include "tensorflow/cc/ops/standard_ops.h" #include "tensorflow/core/framework/tensor_testutil.h" #include "tensorflow/core/lib/core/status_test_util.h" #include "tensorflow/core/platform/test.h" #include "tensorflow/core/platform/test_benchmark.h" #include "tensorflow/core/public/session.h" #include "tensorflow/tools/graph_transforms/transform_utils.h" namespace tensorflow { namespace graph_transforms { // Declare here, so we don't need a public header. Status RoundWeights(const GraphDef& input_graph_def, const TransformFuncContext& context, GraphDef* output_graph_def); class RoundWeightsTest : public ::testing::Test { protected: void TestRoundWeights() { auto root = tensorflow::Scope::NewRootScope(); using namespace ::tensorflow::ops; // NOLINT(build/namespaces) Tensor input_data(DT_FLOAT, TensorShape({1, 1, 6, 2})); test::FillValues( &input_data, {1.0f, 4.0f, 2.0f, 5.0f, 3.0f, 6.0f, -1.0f, -4.0f, -2.0f, -5.0f, -3.0f, -6.0f}); Output input_op = Const(root.WithOpName("input_op"), Input::Initializer(input_data)); Tensor weights_data(DT_FLOAT, TensorShape({1, 2, 2, 10})); test::FillValues( &weights_data, {1.0f, 2.0f, 3.0f, 4.0f, 0.1f, 0.2f, 0.3f, 0.4f, 1.0f, 2.0f, 3.0f, 4.0f, 0.1f, 0.2f, 0.3f, 0.4f, 1.0f, 2.0f, 3.0f, 4.0f, 0.1f, 0.2f, 0.3f, 0.4f, 1.0f, 2.0f, 3.0f, 4.0f, 0.1f, 0.2f, 0.3f, 0.4f, 1.0f, 2.0f, 3.0f, 4.0f, 0.1f, 0.2f, 0.3f, 0.4f}); Output weights_op = Const(root.WithOpName("weights_op"), Input::Initializer(weights_data)); Output conv_op = Conv2D(root.WithOpName("output"), input_op, weights_op, {1, 1, 1, 1}, "VALID"); GraphDef original_graph_def; TF_ASSERT_OK(root.ToGraphDef(&original_graph_def)); std::unique_ptr original_session(NewSession(SessionOptions())); TF_ASSERT_OK(original_session->Create(original_graph_def)); std::vector original_outputs; TF_ASSERT_OK(original_session->Run({}, {"output"}, {}, &original_outputs)); GraphDef rounded_graph_def; TF_ASSERT_OK( RoundWeights(original_graph_def, {{}, {"output"}}, &rounded_graph_def)); std::unique_ptr rounded_session(NewSession(SessionOptions())); TF_ASSERT_OK(rounded_session->Create(rounded_graph_def)); std::vector rounded_outputs; TF_ASSERT_OK(rounded_session->Run({}, {"output"}, {}, &rounded_outputs)); test::ExpectTensorNear(original_outputs[0], rounded_outputs[0], 0.5); std::map node_lookup; MapNamesToNodes(rounded_graph_def, &node_lookup); EXPECT_EQ(1, node_lookup.count("input_op")); const NodeDef* r_input_op = node_lookup.at("input_op"); EXPECT_EQ(DT_FLOAT, r_input_op->attr().at("dtype").type()); EXPECT_EQ(1, node_lookup.count("weights_op")); const NodeDef* r_weights_op = node_lookup.at("weights_op"); EXPECT_EQ("Const", r_weights_op->op()); EXPECT_EQ(DT_FLOAT, r_weights_op->attr().at("dtype").type()); } }; TEST_F(RoundWeightsTest, TestRoundWeights) { TestRoundWeights(); } } // namespace graph_transforms } // namespace tensorflow