Home
last modified time | relevance | path

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

/external/tensorflow/tensorflow/tools/graph_transforms/
Dinsert_logging.cc72 std::unordered_map<string, std::set<int>> node_outputs; in InsertLogging() local
86 node_outputs[name].insert(output_index); in InsertLogging()
96 if (node_outputs[node.name()].empty()) { in InsertLogging()
130 for (int output_index : node_outputs[node.name()]) { in InsertLogging()
/external/tensorflow/tensorflow/lite/delegates/gpu/common/transformations/
Dadd_quant_adjustments.cc44 auto node_outputs = graph->FindOutputs(node->id); in ApplyToNode() local
45 for (auto output_value : node_outputs) { in ApplyToNode()
/external/tensorflow/tensorflow/lite/
Dsimple_planner.cc145 TfLiteIntArray* node_outputs = node.outputs; in PlanAllocations() local
146 for (int j = 0; j < node_outputs->size; ++j) { in PlanAllocations()
147 int tensor_index = node_outputs->data[j]; in PlanAllocations()
Darena_planner.cc163 TfLiteIntArray* node_outputs = node.outputs; in PlanAllocations() local
164 for (int j = 0; j < node_outputs->size; ++j) { in PlanAllocations()
165 int tensor_index = node_outputs->data[j]; in PlanAllocations()
/external/pytorch/torch/onnx/_internal/
Djit_utils.py297 node_outputs = tuple(node.outputs()) # type: ignore[possibly-undefined]
298 assert len(node_outputs) == n_outputs
/external/tensorflow/tensorflow/lite/delegates/gpu/gl/compiler/
Dfuse_auto_input.cc57 auto node_outputs = graph->FindOutputs(node->id); in ApplyToNode() local
/external/pytorch/torch/csrc/jit/passes/utils/
Dsubgraph_utils.cpp509 std::set<Value*> node_outputs(n->outputs().begin(), n->outputs().end()); in unmergeNode() local
527 if (node_outputs.count(subgraph->outputs().at(i)) != 0) { in unmergeNode()
/external/pytorch/torch/profiler/
D_memory_profiler.py531 node_outputs = set(node.outputs.items())
532 duplicates = outputs & node_outputs
534 outputs |= node_outputs