/external/tensorflow/tensorflow/python/ops/ |
D | map_ops.py | 34 def tensor_map_size(input_handle): argument 35 return gen_map_ops.tensor_map_size(input_handle) 37 def tensor_map_insert(input_handle, key, value): argument 38 return gen_map_ops.tensor_map_insert(input_handle, key, value) 40 def tensor_map_lookup(input_handle, key, value_dtype): argument 41 return gen_map_ops.tensor_map_lookup(input_handle, key, value_dtype) 43 def tensor_map_erase(input_handle, key, value_dtype): argument 44 return gen_map_ops.tensor_map_erase(input_handle, key, value_dtype) 46 def tensor_map_has_key(input_handle, key): argument 47 return gen_map_ops.tensor_map_has_key(input_handle, key) [all …]
|
D | list_ops.py | 106 def tensor_list_get_item(input_handle, index, element_dtype, element_shape=None, argument 109 input_handle=input_handle, 116 def tensor_list_pop_back(input_handle, element_dtype, name=None): argument 118 input_handle=input_handle, 124 def tensor_list_gather(input_handle, argument 130 input_handle=input_handle, 140 input_handle=None, argument 144 if input_handle is not None: 146 input_handle=input_handle, tensor=tensor, indices=indices, name=name) 147 handle_data_util.copy_handle_data(input_handle, output_handle) [all …]
|
/external/llvm-project/lldb/test/API/python_api/interpreter/ |
D | TestRunCommandInterpreterAPI.py | 19 with open(self.stdin_path, 'w') as input_handle: 20 input_handle.write("nonexistingcommand\nquit") 57 with open(self.stdin_path, 'w') as input_handle: 58 input_handle.write("nonexistingcommand\nquit")
|
/external/tensorflow/tensorflow/compiler/mlir/tensorflow/utils/ |
D | eval_util.cc | 113 TFE_TensorHandle* input_handle = TFE_NewTensorHandle(tf_tensor, status); in EvaluateOperation() local 116 MakeCleanup([input_handle] { TFE_DeleteTensorHandle(input_handle); }); in EvaluateOperation() 117 TFE_OpAddInput(op, input_handle, status); in EvaluateOperation()
|
/external/tensorflow/tensorflow/core/ops/compat/ops_history_v2/ |
D | TensorListResize.pbtxt | 4 name: "input_handle" 20 name: "input_handle"
|
D | TensorListConcat.pbtxt | 4 name: "input_handle" 23 name: "input_handle"
|
D | TensorListLength.pbtxt | 4 name: "input_handle"
|
D | WrapDatasetVariant.pbtxt | 4 name: "input_handle"
|
D | UnwrapDatasetVariant.pbtxt | 4 name: "input_handle"
|
D | TensorMapSize.pbtxt | 4 name: "input_handle"
|
D | TensorMapStackKeys.pbtxt | 4 name: "input_handle"
|
/external/tensorflow/tensorflow/core/ops/compat/ops_history_v1/ |
D | TensorListResize.pbtxt | 4 name: "input_handle" 20 name: "input_handle"
|
D | TensorListConcat.pbtxt | 4 name: "input_handle" 23 name: "input_handle"
|
D | UnwrapDatasetVariant.pbtxt | 4 name: "input_handle"
|
D | WrapDatasetVariant.pbtxt | 4 name: "input_handle"
|
D | TensorListLength.pbtxt | 4 name: "input_handle"
|
D | TensorListPushBack.pbtxt | 4 name: "input_handle"
|
/external/tensorflow/tensorflow/core/api_def/base_api/ |
D | api_def_TensorMapInsert.pbtxt | 3 summary: "Returns a map that is the 'input_handle' with the given key-value pair inserted." 5 input_handle: the original map
|
D | api_def_TensorListPushBack.pbtxt | 3 …the passed-in `Tensor` as last element and the other elements of the given list in `input_handle`." 6 input_handle: The old list.
|
D | api_def_TensorListConcatV2.pbtxt | 7 input_handle: The input list. 12 the leading dim of input_handle.element_shape or the element_shape input arg
|
D | api_def_TensorListResize.pbtxt | 6 input_handle: the input list
|
/external/tensorflow/tensorflow/lite/python/ |
D | convert_file_to_c_source.py | 53 with open(FLAGS.input_tflite_file, "rb") as input_handle: 54 input_data = input_handle.read()
|
/external/libbrillo/brillo/ |
D | process.cc | 249 int input_handle = in Start() local 252 if (input_handle < 0) { in Start() 260 if (input_handle != STDIN_FILENO) { in Start() 261 if (HANDLE_EINTR(dup2(input_handle, STDIN_FILENO)) < 0) { in Start() 265 IGNORE_EINTR(close(input_handle)); in Start()
|
/external/tensorflow/tensorflow/lite/experimental/acceleration/compatibility/ |
D | convert_binary_to_cc_source.py | 179 with open(flags.input_binary_file, "rb") as input_handle: 180 input_data = input_handle.read()
|
/external/tensorflow/tensorflow/compiler/mlir/tensorflow/transforms/ |
D | tensor_list_ops_decomposition.cc | 638 auto buffer = push.input_handle(); in HandleTensorListPushBackOp() 663 auto buffer = pop.input_handle(); in HandleTensorListPopBackOp() 690 auto buffer = get_item.input_handle(); in HandleTensorListGetItemOp() 709 auto buffer = set_item.input_handle(); in HandleTensorListSetItemOp() 730 auto it = buffer_to_size.find(length.input_handle()); in HandleTensorListLengthOp() 738 length.input_handle().getType().cast<RankedTensorType>().getDimSize(0), in HandleTensorListLengthOp() 759 if (buffer_to_size.count(elem_shape.input_handle()) == 0) { in HandleTensorListElementShapeOp() 762 auto buffer = elem_shape.input_handle(); in HandleTensorListElementShapeOp() 775 auto it = buffer_to_size.find(gather.input_handle()); in HandleTensorListGatherOp() 779 auto buffer = gather.input_handle(); in HandleTensorListGatherOp() [all …]
|