Home
last modified time | relevance | path

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

/external/tensorflow/tensorflow/python/debug/cli/
Devaluator_test.py31 device_name, node_name, output_slot, debug_op, exec_index = (
37 self.assertEqual(0, exec_index)
39 device_name, node_name, output_slot, debug_op, exec_index = (
45 self.assertEqual(0, exec_index)
48 device_name, node_name, output_slot, debug_op, exec_index = (
54 self.assertEqual(0, exec_index)
56 device_name, node_name, output_slot, debug_op, exec_index = (
63 self.assertEqual(0, exec_index)
66 device_name, node_name, output_slot, debug_op, exec_index = (
73 self.assertEqual(0, exec_index)
[all …]
Devaluator.py87 exec_index = int(split_items[-1][
91 exec_index = 0
103 return device_name, node_name, output_slot, debug_op, exec_index
135 device_name, node_name, output_slot, debug_op, exec_index = (
141 device_name=device_name)[exec_index]
/external/tensorflow/tensorflow/lite/
Dinterpreter_test.cc1137 for (int exec_index = 0; exec_index < execution_plan->size; in SimpleDelegate() local
1138 exec_index++) { in SimpleDelegate()
1139 int node_index = execution_plan->data[exec_index]; in SimpleDelegate()
1141 TFLITE_CHECK_EQ(exec_index, node_index); in SimpleDelegate()