HomeSort by relevance Sort by last modified time
    Searched refs:handle_data (Results 1 - 25 of 55) sorted by null

1 2 3

  /external/tensorflow/tensorflow/core/grappler/optimizers/
gpu_swapping_ops.cc 33 auto* handle_data = c->input_handle_shapes_and_types(0);
34 if (handle_data != nullptr) {
35 c->set_output_handle_shapes_and_types(0, *handle_data);
49 auto* handle_data = c->input_handle_shapes_and_types(0);
50 if (handle_data != nullptr) {
51 c->set_output_handle_shapes_and_types(0, *handle_data);
  /external/tensorflow/tensorflow/core/ops/
list_ops.cc 31 "Invalid handle_data for input list. Expected length of "
45 // Assumes that the handle_data is valid.
81 auto* handle_data = c->input_handle_shapes_and_types(0);
82 if (handle_data != nullptr && handle_data->size() > 1) {
86 if (handle_data != nullptr && handle_data->size() == 1) {
88 (*handle_data)[0];
128 auto* handle_data = c->input_handle_shapes_and_types(0);
129 if (handle_data != nullptr && handle_data->size() > 1)
245 auto* handle_data = c->input_handle_shapes_and_types(0); local
    [all...]
control_flow_ops.cc 35 auto* handle_data = c->input_handle_shapes_and_types(0); local
36 if (handle_data != nullptr) {
37 c->set_output_handle_shapes_and_types(0, *handle_data);
38 c->set_output_handle_shapes_and_types(1, *handle_data);
145 auto* handle_data = c->input_handle_shapes_and_types(0);
146 if (handle_data != nullptr) {
147 c->set_output_handle_shapes_and_types(0, *handle_data);
resource_variable_ops.cc 34 auto* handle_data = c->input_handle_shapes_and_types(0); local
35 if (handle_data == nullptr || handle_data->empty()) {
38 *shape_and_type = *handle_data;
76 auto* handle_data = c->input_handle_shapes_and_types(i); local
77 if (handle_data == nullptr || handle_data->empty()) {
81 shape_and_type = (*handle_data)[0];
236 auto* handle_data = c->input_handle_shapes_and_types(0); local
237 if (handle_data == nullptr || handle_data->empty())
    [all...]
math_ops_test.cc 201 // Tests below will modify handle_data and call run_inference_for_handles to
206 std::vector<std::unique_ptr<ShapeDtypeV>> handle_data; local
213 handle_data));
231 handle_data.emplace_back(
233 handle_data.emplace_back(new ShapeDtypeV{{i0, DT_FLOAT}, {i1, DT_INT32}});
234 handle_data.emplace_back(
246 handle_data[2]->at(0).first = shape_proto({2, 2});
249 handle_data[2]->at(0).first = i1; // restore to valid
252 handle_data[2]->at(1).second = DT_INT64;
255 handle_data[2]->at(1).second = DT_INT32; // restore to vali
    [all...]
state_ops.cc 281 auto* handle_data = c->input_handle_shapes_and_types(0);
282 if (handle_data == nullptr || handle_data->empty()) {
285 shape_inference::ShapeAndType shape_and_type = (*handle_data)[0];
lookup_ops.cc 95 auto* handle_data = c->input_handle_shapes_and_types(0); local
96 if (handle_data == nullptr || handle_data->size() != 2) {
100 const ShapeAndType& key_shape_and_type = (*handle_data)[0];
101 const ShapeAndType& value_shape_and_type = (*handle_data)[1];
  /external/tensorflow/tensorflow/c/
python_api.cc 124 CppShapeInferenceResult::HandleData handle_data; local
125 handle_data.set_is_set(true);
137 auto* out_shape_and_type = handle_data.add_shape_and_type();
143 handle_data.SerializeToString(&result);
149 tensorflow::CppShapeInferenceResult::HandleData handle_data; local
150 if (!handle_data.ParseFromArray(proto, proto_len)) {
155 DCHECK(handle_data.is_set());
162 for (const auto& shape_and_type_proto : handle_data.shape_and_type()) {
  /external/python/cpython3/Lib/html/
parser.py 75 by calling self.handle_data() with the data as argument (the data
78 corresponding Unicode character (and self.handle_data() is no
144 # we can't pass the text to handle_data in case we have
163 self.handle_data(unescape(rawdata[i:j]))
165 self.handle_data(rawdata[i:j])
181 self.handle_data("<")
196 self.handle_data(unescape(rawdata[i:k]))
198 self.handle_data(rawdata[i:k])
212 self.handle_data(rawdata[i:i+2])
238 self.handle_data("&"
447 def handle_data(self, data): member in class:HTMLParser
    [all...]
  /external/libchrome/mojo/public/cpp/bindings/lib/
native_struct_serialization.cc 109 auto* handle_data = handles_data->at(i).Get(); local
110 if (!handle_data)
114 &handle_data->the_handle, &handle, context);
118 static_cast<native::SerializedHandle::Type>(handle_data->type)));
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
sgmllib.py 55 # between tags is passed to the parser by calling self.handle_data()
122 self.handle_data(rawdata[i:n])
129 self.handle_data(rawdata[i:j])
135 self.handle_data(rawdata[i])
150 self.handle_data("<")
180 self.handle_data(rawdata[i])
203 self.handle_data(rawdata[i])
209 self.handle_data(rawdata[i:j])
213 self.handle_data(rawdata[i:n])
326 self.handle_data(data)
439 def handle_data(self, data): member in class:SGMLParser
467 def handle_data(self, data): member in class:TestSGMLParser
    [all...]
HTMLParser.py 79 by calling self.handle_data() with the data as argument (the data
142 if i < j: self.handle_data(rawdata[i:j])
158 self.handle_data("<")
179 self.handle_data(rawdata[0:2])
202 self.handle_data("&")
210 self.handle_data(rawdata[i:n])
345 def handle_data(self, data): member in class:HTMLParser
xmllib.py 88 # parser by calling self.handle_data() with some data as argument (the
251 self.handle_data(data)
269 self.handle_data(data)
277 self.handle_data(data)
296 self.handle_data(data)
336 self.handle_data(data)
355 self.handle_data(data)
389 self.handle_data(data)
396 self.handle_data(rawdata[i])
412 self.handle_data(data)
778 def handle_data(self, data): member in class:XMLParser
819 def handle_data(self, data): member in class:TestXMLParser
    [all...]
  /external/python/cpython2/Lib/
sgmllib.py 55 # between tags is passed to the parser by calling self.handle_data()
122 self.handle_data(rawdata[i:n])
129 self.handle_data(rawdata[i:j])
135 self.handle_data(rawdata[i])
150 self.handle_data("<")
180 self.handle_data(rawdata[i])
203 self.handle_data(rawdata[i])
209 self.handle_data(rawdata[i:j])
213 self.handle_data(rawdata[i:n])
326 self.handle_data(data
439 def handle_data(self, data): member in class:SGMLParser
467 def handle_data(self, data): member in class:TestSGMLParser
    [all...]
HTMLParser.py 87 by calling self.handle_data() with the data as argument (the data
155 if i < j: self.handle_data(rawdata[i:j])
171 self.handle_data("<")
185 self.handle_data(rawdata[i:k])
199 self.handle_data(rawdata[i:i+2])
222 self.handle_data("&")
230 self.handle_data(rawdata[i:n])
321 self.handle_data(rawdata[i:endpos])
376 self.handle_data(rawdata[i:gtpos])
398 self.handle_data(rawdata[i:gtpos]
427 def handle_data(self, data): member in class:HTMLParser
    [all...]
xmllib.py 88 # parser by calling self.handle_data() with some data as argument (the
251 self.handle_data(data)
269 self.handle_data(data)
277 self.handle_data(data)
296 self.handle_data(data)
336 self.handle_data(data)
355 self.handle_data(data)
389 self.handle_data(data)
396 self.handle_data(rawdata[i])
412 self.handle_data(data
778 def handle_data(self, data): member in class:XMLParser
819 def handle_data(self, data): member in class:TestXMLParser
    [all...]
  /external/tensorflow/tensorflow/python/ops/
custom_gradient.py 56 handle_data = source_t._handle_data # pylint: disable=protected-access
58 handle_data = resource_variable_ops.get_resource_handle_data(source_t)
59 if (handle_data is not None
60 and handle_data.is_set
61 and handle_data.shape_and_type):
65 handle_data.SerializeToString())
69 for pair in handle_data.shape_and_type])
resource_variable_ops.py 54 handle_data = pywrap_tensorflow.GetHandleShapeAndType(
58 compat.as_bytes(handle_data))
71 def _set_handle_shapes_and_types(tensor, handle_data, graph_mode):
76 handle_data: A `CppShapeInferenceResult.HandleData`.
79 tensor._handle_data = handle_data # pylint: disable=protected-access
85 for pair in handle_data.shape_and_type])
109 no handle data, or its len(handle_data.shape_and_type) != 1.
138 data (if any) from `initial_value` and append it to the `handle_data`.
150 // handle_data(initial_value).shape_and_type[0]
153 // handle_data(initial_value).shape_and_type[1
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
HTMLParser.py 87 by calling self.handle_data() with the data as argument (the data
155 if i < j: self.handle_data(rawdata[i:j])
171 self.handle_data("<")
185 self.handle_data(rawdata[i:k])
199 self.handle_data(rawdata[i:i+2])
222 self.handle_data("&")
230 self.handle_data(rawdata[i:n])
321 self.handle_data(rawdata[i:endpos])
376 self.handle_data(rawdata[i:gtpos])
398 self.handle_data(rawdata[i:gtpos])
427 def handle_data(self, data): member in class:HTMLParser
    [all...]
xmllib.py 88 # parser by calling self.handle_data() with some data as argument (the
251 self.handle_data(data)
269 self.handle_data(data)
277 self.handle_data(data)
296 self.handle_data(data)
336 self.handle_data(data)
355 self.handle_data(data)
389 self.handle_data(data)
396 self.handle_data(rawdata[i])
412 self.handle_data(data)
778 def handle_data(self, data): member in class:XMLParser
819 def handle_data(self, data): member in class:TestXMLParser
    [all...]
  /device/google/marlin/camera/QCamera2/HAL3/
QCamera3Mem.cpp 307 struct ion_handle_data handle_data; local
344 memset(&handle_data, 0, sizeof(handle_data));
345 handle_data.handle = ion_info_fd.handle;
346 ioctl(main_ion_fd, ION_IOC_FREE, &handle_data);
364 struct ion_handle_data handle_data; local
372 memset(&handle_data, 0, sizeof(handle_data));
373 handle_data.handle = memInfo.handle;
374 ioctl(main_ion_fd, ION_IOC_FREE, &handle_data);
    [all...]
  /external/autotest/client/site_tests/firmware_TouchMTB/
noise_summary.py 66 def handle_data(self, data): member in class:ParseReport
106 def handle_data(self, data): member in class:CountIterations
  /external/tensorflow/tensorflow/python/eager/
pywrap_tensor.cc 294 // Note that we assume that handle_data cannot participate in reference
296 PyObject* handle_data; member in struct:EagerTensor
362 self->handle_data = Py_None;
507 Py_DECREF(self->handle_data);
591 Py_INCREF(self->handle_data);
592 return self->handle_data;
597 Py_DECREF(self->handle_data);
599 self->handle_data = value;
832 t->handle_data = Py_None;
    [all...]
  /external/tensorflow/tensorflow/python/framework/
cpp_shape_inference.cc 91 if (tmp.handle_data().is_set()) {
95 for (const auto& x : tmp.handle_data().shape_and_type()) {
  /external/wpa_supplicant_8/src/drivers/
driver_wired.c 80 static void handle_data(void *ctx, unsigned char *buf, size_t len) function
91 wpa_printf(MSG_MSGDUMP, "handle_data: too short (%lu)",
131 handle_data(eloop_ctx, buf, len);

Completed in 794 milliseconds

1 2 3