Searched refs:input_lists (Results 1 – 4 of 4) sorted by relevance
/external/tensorflow/tensorflow/python/data/experimental/kernel_tests/ |
D | parallel_interleave_test.py | 120 input_lists = [[4, 4, 4, 4], [5, 5, 5, 5, 5], [6, 6, 6, 6, 6, 6], 124 expected_elements = itertools.chain(*input_lists) 126 self._interleave(input_lists, 1, 1)): 135 zip_longest(expected_elements, self._interleave(input_lists, 2, 1))): 140 input_lists = [[4] * 4, [5] * 5, [6] * 6] * 2 146 zip_longest(expected_elements, self._interleave(input_lists, 2, 2))): 151 input_lists = [[4, 4, 4, 4], [], [6, 6, 6, 6, 6, 6], [4, 4, 4, 4], [], 158 zip_longest(expected_elements, self._interleave(input_lists, 2, 1))):
|
/external/tensorflow/tensorflow/python/debug/lib/ |
D | debug_data.py | 1126 input_lists = [self._debug_graphs[device_name].node_inputs] 1128 input_lists.append(self._debug_graphs[device_name].node_ctrl_inputs) 1130 input_lists.append( 1133 input_lists, 1201 input_lists = [self._debug_graphs[dst_device_name].node_inputs] 1204 input_lists.append(debug_graph.node_ctrl_inputs) 1206 input_lists.append(debug_graph.node_reversed_ref_inputs) 1208 input_lists,
|
D | debug_graphs.py | 152 input_lists, argument 172 self._input_lists = input_lists
|
/external/tensorflow/tensorflow/python/data/kernel_tests/ |
D | interleave_test.py | 115 input_lists = _repeat(input_values, 2) 118 expected_elements, _interleave(input_lists, cycle_length,
|