Searched refs:tf_tensor_list_new (Results 1 – 4 of 4) sorted by relevance
/external/tensorflow/tensorflow/python/autograph/operators/ |
D | data_structures_test.py | 44 l = data_structures.tf_tensor_list_new([3, 4, 5]) 50 l = data_structures.tf_tensor_list_new([], 58 l = data_structures.tf_tensor_list_new(constant_op.constant([3, 4, 5])) 66 data_structures.tf_tensor_list_new([3, 4.0]) 69 data_structures.tf_tensor_list_new([3, 4], element_dtype=dtypes.float32) 71 self.assertIsNot(data_structures.tf_tensor_list_new([3, [4, 5]]), None) 73 data_structures.tf_tensor_list_new([3, 4], element_shape=(2,)) 75 data_structures.tf_tensor_list_new(
|
D | data_structures.py | 54 return tf_tensor_list_new(elements) 107 def tf_tensor_list_new(elements, element_dtype=None, element_shape=None): function
|
D | py_builtins_test.py | 78 tl = py_builtins.len_(data_structures.tf_tensor_list_new([3, 4, 5]))
|
/external/tensorflow/tensorflow/python/autograph/lang/ |
D | special_functions.py | 88 return data_structures.tf_tensor_list_new(elements, element_dtype,
|