1# Copyright 2019 The TensorFlow Authors. All Rights Reserved. 2# 3# Licensed under the Apache License, Version 2.0 (the "License"); 4# you may not use this file except in compliance with the License. 5# You may obtain a copy of the License at 6# 7# http://www.apache.org/licenses/LICENSE-2.0 8# 9# Unless required by applicable law or agreed to in writing, software 10# distributed under the License is distributed on an "AS IS" BASIS, 11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12# See the License for the specific language governing permissions and 13# limitations under the License. 14# ============================================================================== 15"""Test configs for padv2.""" 16from __future__ import absolute_import 17from __future__ import division 18from __future__ import print_function 19 20import numpy as np 21import tensorflow.compat.v1 as tf 22from tensorflow.lite.testing.zip_test_utils import create_tensor_data 23from tensorflow.lite.testing.zip_test_utils import make_zip_of_tests 24from tensorflow.lite.testing.zip_test_utils import register_make_test_function 25 26 27@register_make_test_function() 28def make_padv2_tests(options): 29 """Make a set of tests to do padv2.""" 30 31 # TODO(nupurgarg): Add test for tf.uint8. 32 test_parameters = [ 33 # 4D: 34 { 35 "dtype": [tf.int32, tf.int64, tf.float32], 36 "input_shape": [[1, 1, 2, 1], [2, 1, 1, 1]], 37 "paddings": [[[0, 0], [0, 1], [2, 3], [0, 0]], 38 [[0, 1], [0, 0], [0, 0], [2, 3]]], 39 "constant_paddings": [True, False], 40 "constant_values": [0, 2], 41 }, 42 # 2D: 43 { 44 "dtype": [tf.int32, tf.int64, tf.float32], 45 "input_shape": [[1, 2]], 46 "paddings": [[[0, 1], [2, 3]]], 47 "constant_paddings": [True, False], 48 "constant_values": [0, 2], 49 }, 50 # 1D: 51 { 52 "dtype": [tf.int32], 53 "input_shape": [[1]], 54 "paddings": [[[0, 1]]], 55 "constant_paddings": [False], 56 "constant_values": [0, 2], 57 }, 58 ] 59 60 def build_graph(parameters): 61 """Build a pad graph given `parameters`.""" 62 input_tensor = tf.compat.v1.placeholder( 63 dtype=parameters["dtype"], 64 name="input", 65 shape=parameters["input_shape"]) 66 67 # Get paddings as either a placeholder or constants. 68 if parameters["constant_paddings"]: 69 paddings = parameters["paddings"] 70 input_tensors = [input_tensor] 71 else: 72 shape = [len(parameters["paddings"]), 2] 73 paddings = tf.compat.v1.placeholder( 74 dtype=tf.int32, name="padding", shape=shape) 75 input_tensors = [input_tensor, paddings] 76 77 out = tf.pad( 78 input_tensor, 79 paddings=paddings, 80 constant_values=parameters["constant_values"]) 81 return input_tensors, [out] 82 83 def build_inputs(parameters, sess, inputs, outputs): 84 values = [ 85 create_tensor_data(parameters["dtype"], parameters["input_shape"]) 86 ] 87 if not parameters["constant_paddings"]: 88 values.append(np.array(parameters["paddings"])) 89 return values, sess.run(outputs, feed_dict=dict(zip(inputs, values))) 90 91 make_zip_of_tests(options, test_parameters, build_graph, build_inputs) 92