/* 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. ==============================================================================*/ #define EIGEN_USE_THREADS #include "tensorflow/core/framework/allocator.h" #include "tensorflow/core/framework/fake_input.h" #include "tensorflow/core/framework/node_def_builder.h" #include "tensorflow/core/framework/op_kernel.h" #include "tensorflow/core/framework/tensor.h" #include "tensorflow/core/framework/tensor_testutil.h" #include "tensorflow/core/framework/types.h" #include "tensorflow/core/framework/types.pb.h" #include "tensorflow/core/kernels/ops_testutil.h" #include "tensorflow/core/kernels/ops_util.h" #include "tensorflow/core/kernels/quantization_utils.h" #include "tensorflow/core/lib/core/status_test_util.h" #include "tensorflow/core/platform/test.h" namespace tensorflow { class QuantizedPoolingTest : public OpsTestBase { protected: }; TEST_F(QuantizedPoolingTest, SmallAveragePooling) { const int ksize = 2; const int stride = 2; TF_ASSERT_OK(NodeDefBuilder("quantized_avg_pool_op", "QuantizedAvgPool") .Input(FakeInput(DT_QUINT8)) .Input(FakeInput(DT_FLOAT)) .Input(FakeInput(DT_FLOAT)) .Attr("T", DataTypeToEnum::v()) .Attr("ksize", {1, ksize, ksize, 1}) .Attr("strides", {1, stride, stride, 1}) .Attr("padding", "SAME") .Finalize(node_def())); TF_ASSERT_OK(InitOp()); const float input_min = 0.0f; const float input_max = 255.0f; const int input_height = 4; const int input_width = 4; const int input_channels = 2; Tensor input_float(DT_FLOAT, {1, input_height, input_width, input_channels}); test::FillValues( &input_float, {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}); Tensor input_quantized = FloatTensorToQuantized(input_float, input_min, input_max); const int expected_width = input_width / stride; const int expected_height = input_height / stride; Tensor expected_float(DT_FLOAT, {1, expected_height, expected_width, input_channels}); test::FillValues(&expected_float, {6, 7, 10, 11, 22, 23, 26, 27}); AddInputFromArray(input_quantized.shape(), input_quantized.flat()); AddInputFromArray(TensorShape({1}), {input_min}); AddInputFromArray(TensorShape({1}), {input_max}); TF_ASSERT_OK(RunOpKernel()); const Tensor& output_quantized = *GetOutput(0); const float output_min = GetOutput(1)->flat()(0); const float output_max = GetOutput(2)->flat()(0); Tensor output_float = QuantizedTensorToFloat(output_quantized, output_min, output_max); test::ExpectTensorNear(expected_float, output_float, 0.2); } TEST_F(QuantizedPoolingTest, SmallMaxPooling) { const int ksize = 2; const int stride = 2; TF_ASSERT_OK(NodeDefBuilder("quantized_max_pool_op", "QuantizedMaxPool") .Input(FakeInput(DT_QUINT8)) .Input(FakeInput(DT_FLOAT)) .Input(FakeInput(DT_FLOAT)) .Attr("T", DataTypeToEnum::v()) .Attr("ksize", {1, ksize, ksize, 1}) .Attr("strides", {1, stride, stride, 1}) .Attr("padding", "SAME") .Finalize(node_def())); TF_ASSERT_OK(InitOp()); const float input_min = 0.0f; const float input_max = 255.0f; const int input_height = 4; const int input_width = 4; const int input_channels = 2; Tensor input_float(DT_FLOAT, {1, input_height, input_width, input_channels}); test::FillValues( &input_float, {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}); Tensor input_quantized = FloatTensorToQuantized(input_float, input_min, input_max); const int expected_width = input_width / stride; const int expected_height = input_height / stride; Tensor expected_float(DT_FLOAT, {1, expected_height, expected_width, input_channels}); test::FillValues(&expected_float, {11, 12, 15, 16, 27, 28, 31, 32}); AddInputFromArray(input_quantized.shape(), input_quantized.flat()); AddInputFromArray(TensorShape({1}), {input_min}); AddInputFromArray(TensorShape({1}), {input_max}); TF_ASSERT_OK(RunOpKernel()); const Tensor& output_quantized = *GetOutput(0); const float output_min = GetOutput(1)->flat()(0); const float output_max = GetOutput(2)->flat()(0); Tensor output_float = QuantizedTensorToFloat(output_quantized, output_min, output_max); test::ExpectTensorNear(expected_float, output_float, 0.2); } } // namespace tensorflow