Home
last modified time | relevance | path

Searched refs:input_handle (Results 1 – 25 of 81) sorted by relevance

1234

/external/tensorflow/tensorflow/python/ops/
Dmap_ops.py34 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 …]
Dlist_ops.py106 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/
DTestRunCommandInterpreterAPI.py19 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/
Deval_util.cc113 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/
DTensorListResize.pbtxt4 name: "input_handle"
20 name: "input_handle"
DTensorListConcat.pbtxt4 name: "input_handle"
23 name: "input_handle"
DTensorListLength.pbtxt4 name: "input_handle"
DWrapDatasetVariant.pbtxt4 name: "input_handle"
DUnwrapDatasetVariant.pbtxt4 name: "input_handle"
DTensorMapSize.pbtxt4 name: "input_handle"
DTensorMapStackKeys.pbtxt4 name: "input_handle"
/external/tensorflow/tensorflow/core/ops/compat/ops_history_v1/
DTensorListResize.pbtxt4 name: "input_handle"
20 name: "input_handle"
DTensorListConcat.pbtxt4 name: "input_handle"
23 name: "input_handle"
DUnwrapDatasetVariant.pbtxt4 name: "input_handle"
DWrapDatasetVariant.pbtxt4 name: "input_handle"
DTensorListLength.pbtxt4 name: "input_handle"
DTensorListPushBack.pbtxt4 name: "input_handle"
/external/tensorflow/tensorflow/core/api_def/base_api/
Dapi_def_TensorMapInsert.pbtxt3 summary: "Returns a map that is the 'input_handle' with the given key-value pair inserted."
5 input_handle: the original map
Dapi_def_TensorListPushBack.pbtxt3 …the passed-in `Tensor` as last element and the other elements of the given list in `input_handle`."
6 input_handle: The old list.
Dapi_def_TensorListConcatV2.pbtxt7 input_handle: The input list.
12 the leading dim of input_handle.element_shape or the element_shape input arg
Dapi_def_TensorListResize.pbtxt6 input_handle: the input list
/external/tensorflow/tensorflow/lite/python/
Dconvert_file_to_c_source.py53 with open(FLAGS.input_tflite_file, "rb") as input_handle:
54 input_data = input_handle.read()
/external/libbrillo/brillo/
Dprocess.cc249 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/
Dconvert_binary_to_cc_source.py179 with open(flags.input_binary_file, "rb") as input_handle:
180 input_data = input_handle.read()
/external/tensorflow/tensorflow/compiler/mlir/tensorflow/transforms/
Dtensor_list_ops_decomposition.cc638 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 …]

1234