Home
last modified time | relevance | path

Searched refs:exec_index (Results 1 – 6 of 6) sorted by relevance

/external/tensorflow/tensorflow/python/debug/cli/
Devaluator_test.py27 device_name, node_name, output_slot, debug_op, exec_index = (
33 self.assertEqual(0, exec_index)
35 device_name, node_name, output_slot, debug_op, exec_index = (
41 self.assertEqual(0, exec_index)
44 device_name, node_name, output_slot, debug_op, exec_index = (
50 self.assertEqual(0, exec_index)
52 device_name, node_name, output_slot, debug_op, exec_index = (
59 self.assertEqual(0, exec_index)
62 device_name, node_name, output_slot, debug_op, exec_index = (
69 self.assertEqual(0, exec_index)
[all …]
Devaluator.py83 exec_index = int(split_items[-1][
87 exec_index = 0
99 return device_name, node_name, output_slot, debug_op, exec_index
131 device_name, node_name, output_slot, debug_op, exec_index = (
137 device_name=device_name)[exec_index]
/external/v4l-utils/utils/v4l2-tracer/
Dv4l2-tracer.cpp215 int exec_index = 0; in tracer() local
231 exec[exec_index++] = argv[0]; /* tracee is v4l2-tracer, local or installed */ in tracer()
232 exec[exec_index++] = retrace_command; in tracer()
233 exec[exec_index++] = argv[optind]; /* json file to be retraced */ in tracer()
236 exec[exec_index++] = argv[optind++]; in tracer()
238 exec[exec_index] = nullptr; in tracer()
331 for (int i = 0; i < exec_index; i++) in tracer()
/external/tensorflow/tensorflow/lite/delegates/
Ddelegate_test_util.cc184 for (int exec_index = 0; exec_index < execution_plan->size; exec_index++) { in SimpleDelegate() local
185 int node_index = execution_plan->data[exec_index]; in SimpleDelegate()
189 if (exec_index == node_index) { in SimpleDelegate()
/external/python/cpython3/Objects/
Dcodeobject.c1975 const int exec_index = co_arg; in code_richcompare() local
1976 _PyExecutorObject *exec = co->co_executors->executors[exec_index]; in code_richcompare()
1983 const int exec_index = cp_arg; in code_richcompare() local
1984 _PyExecutorObject *exec = cp->co_executors->executors[exec_index]; in code_richcompare()
/external/python/cpython3/Python/
Dinstrumentation.c335 int exec_index = _PyCode_CODE(code)[offset].op.arg; in _PyInstruction_GetLength() local
336 _PyExecutorObject *exec = code->co_executors->executors[exec_index]; in _PyInstruction_GetLength()