/external/tensorflow/tensorflow/python/data/util/ |
D | nest_test.py | 175 nest.assert_same_structure(structure1, structure2) 176 nest.assert_same_structure("abc", 1.0) 177 nest.assert_same_structure("abc", np.array([0, 1])) 178 nest.assert_same_structure("abc", constant_op.constant([0, 1])) 182 nest.assert_same_structure(structure1, structure_different_num_elements) 186 nest.assert_same_structure((0, 1), np.array([0, 1])) 190 nest.assert_same_structure(0, (0, 1)) 194 nest.assert_same_structure(structure1, structure_different_nesting) 198 self.assertRaises(TypeError, nest.assert_same_structure, (0, 1), 201 nest.assert_same_structure(named_type_0(3, 4), named_type_0("a", "b")) [all …]
|
D | nest.py | 106 def assert_same_structure(nest1, nest2, check_types=True): function 241 assert_same_structure(structure[0], other, check_types=check_types)
|
D | sparse_test.py | 326 nest.assert_same_structure(expected, actual) 356 nest.assert_same_structure(expected, actual)
|
D | structure.py | 329 nest.assert_same_structure(self._nested_structure,
|
/external/tensorflow/tensorflow/python/util/ |
D | nest_test.py | 289 nest.assert_same_structure(structure1, structure2) 290 nest.assert_same_structure("abc", 1.0) 291 nest.assert_same_structure("abc", np.array([0, 1])) 292 nest.assert_same_structure("abc", constant_op.constant([0, 1])) 306 nest.assert_same_structure(structure1, structure_different_num_elements) 316 nest.assert_same_structure([0, 1], np.array([0, 1])) 326 nest.assert_same_structure(0, [0, 1]) 328 self.assertRaises(TypeError, nest.assert_same_structure, (0, 1), [0, 1]) 334 nest.assert_same_structure(structure1, structure_different_nesting) 336 self.assertRaises(TypeError, nest.assert_same_structure, (0, 1), [all …]
|
D | nest.py | 252 def assert_same_structure(nest1, nest2, check_types=True, function 499 assert_same_structure(structure[0], other, check_types=check_types,
|
/external/tensorflow/tensorflow/python/framework/ |
D | composite_tensor_test.py | 93 nest.assert_same_structure(st1, st2, expand_composites=False) 94 nest.assert_same_structure(st1, st2, expand_composites=True) 95 nest.assert_same_structure(st1, test, expand_composites=False) 97 nest.assert_same_structure(st1, test, expand_composites=True)
|
D | func_graph.py | 777 nest.assert_same_structure(n1, n2)
|
/external/tensorflow/tensorflow/python/data/ops/ |
D | iterator_ops.py | 189 nest.assert_same_structure(output_types, output_shapes) 277 nest.assert_same_structure(output_types, output_shapes) 347 nest.assert_same_structure(self.output_types, dataset_output_types) 348 nest.assert_same_structure(self.output_shapes, dataset_output_shapes)
|
/external/tensorflow/tensorflow/python/ops/ |
D | rnn.py | 259 nest.assert_same_structure(state, new_state) 277 nest.assert_same_structure(state, new_state) 1109 nest.assert_same_structure(initial_state, cell.state_size) 1165 nest.assert_same_structure(state, cell_state) 1166 nest.assert_same_structure(cell.output_size, next_output) 1173 nest.assert_same_structure(state, next_state) 1174 nest.assert_same_structure(current_input, next_input) 1175 nest.assert_same_structure(emit_ta, emit_output)
|
D | map_fn.py | 258 nest.assert_same_structure(dtype or elems, packed_fn_values)
|
D | while_v2.py | 77 nest.assert_same_structure(orig_loop_vars, shape_invariants) 157 nest.assert_same_structure(list(outputs), list(orig_loop_vars))
|
D | cond_v2.py | 580 nest.assert_same_structure(true_graph.structured_outputs,
|
D | functional_ops.py | 455 nest.assert_same_structure(
|
D | control_flow_ops.py | 406 nest.assert_same_structure(inputs[0], v, expand_composites=True) 1988 nest.assert_same_structure(orig_res_t, orig_res_f, 2946 nest.assert_same_structure(list(packed_vars_for_body), list(body_result), 3461 nest.assert_same_structure(loop_vars, shape_invariants,
|
/external/tensorflow/tensorflow/contrib/seq2seq/python/ops/ |
D | decoder.py | 408 nest.assert_same_structure(state, decoder_state) 409 nest.assert_same_structure(outputs_ta, next_outputs) 410 nest.assert_same_structure(inputs, next_inputs)
|
/external/tensorflow/tensorflow/tools/api/golden/v1/ |
D | tensorflow.nest.pbtxt | 4 name: "assert_same_structure"
|
/external/tensorflow/tensorflow/tools/api/golden/v2/ |
D | tensorflow.nest.pbtxt | 4 name: "assert_same_structure"
|
/external/tensorflow/tensorflow/python/saved_model/ |
D | signature_serialization.py | 139 nest.assert_same_structure(sequence_flat, sequence)
|
/external/tensorflow/tensorflow/python/data/kernel_tests/ |
D | test_base.py | 88 nest.assert_same_structure(result_values[i], expected_values[i])
|
/external/tensorflow/tensorflow/python/keras/engine/ |
D | training_generator_test.py | 381 nest.assert_same_structure(outputs, inputs)
|
/external/tensorflow/tensorflow/python/tpu/ |
D | tpu.py | 753 nest.assert_same_structure(inputs[0], inputs[i]) 801 nest.assert_same_structure(inputs[0], maximum_shapes, check_types=False)
|
/external/tensorflow/tensorflow/contrib/timeseries/python/timeseries/ |
D | state_management_test.py | 306 nest.assert_same_structure(test_start_state, end_state)
|
/external/tensorflow/tensorflow/python/eager/ |
D | function_test.py | 1543 nest.assert_same_structure(out, expected) 1555 nest.assert_same_structure(out, expected) 1566 nest.assert_same_structure(out, expected) 1590 nest.assert_same_structure(out, expected) 1600 nest.assert_same_structure(out, expected)
|
/external/tensorflow/tensorflow/python/data/experimental/ops/ |
D | batching.py | 535 nest.assert_same_structure(output_types, output_shapes)
|