Home
last modified time | relevance | path

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

/external/tensorflow/tensorflow/tools/graph_transforms/
Dinsert_logging.cc73 std::unordered_map<string, std::set<int>> node_outputs; in InsertLogging() local
87 node_outputs[name].insert(output_index); in InsertLogging()
97 if (node_outputs[node.name()].empty()) { in InsertLogging()
131 for (int output_index : node_outputs[node.name()]) { in InsertLogging()
/external/tensorflow/tensorflow/contrib/lite/
Darena_planner.cc105 TfLiteIntArray* node_outputs = node.outputs; in PlanAllocations() local
106 for (int j = 0; j < node_outputs->size; ++j) { in PlanAllocations()
107 int tensor_index = node_outputs->data[j]; in PlanAllocations()
/external/tensorflow/tensorflow/python/debug/lib/
Dstepper.py511 node_outputs = [
515 if node_outputs:
521 target_name = node_outputs[0]
522 additional_handle_requests = node_outputs[1:]