HomeSort by relevance Sort by last modified time
    Searched refs:base_object (Results 1 - 3 of 3) sorted by null

  /external/tensorflow/tensorflow/lite/python/interpreter_wrapper/
interpreter_wrapper.h 71 // Returns a reference to tensor index i as a numpy array. The base_object
73 PyObject* tensor(PyObject* base_object, int i);
interpreter_wrapper.cc 388 PyObject* InterpreterWrapper::tensor(PyObject* base_object, int i) {
403 Py_INCREF(base_object); // SetBaseObject steals, so we need to add.
404 PyArray_SetBaseObject(np_array, base_object);
  /external/autotest/frontend/afe/
model_logic.py 354 @returns a pivot iterator, which yields a tuple (base_object,
356 related object. all base_object instances come from base_objects_by_id.
387 base_object = base_objects_by_id[base_object_id]
388 yield base_object, related_object
464 base_objects_by_id = dict((base_object._get_pk_val(), base_object)
465 for base_object in base_objects_batch)
469 for base_object in base_objects_batch:
470 setattr(base_object, related_list_name, [])
472 for base_object, related_object in pivot_iterator
    [all...]

Completed in 253 milliseconds