Home
last modified time | relevance | path

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

/external/tensorflow/tensorflow/lite/delegates/xnnpack/
Dxnnpack_delegate.cc2939 std::unordered_map<int, int> quasi_static_tensors_producers; in PrepareOpsToDelegate() local
2974 quasi_static_tensors_producers[node->outputs->data[0]] = node_index; in PrepareOpsToDelegate()
3009 quasi_static_tensors_producers[node->outputs->data[0]] = node_index; in PrepareOpsToDelegate()
3026 quasi_static_tensors_producers.find(node->inputs->data[j]); in PrepareOpsToDelegate()
3027 if (it != quasi_static_tensors_producers.end()) { in PrepareOpsToDelegate()
3054 [&quasi_static_tensors_producers](int t1, int t2) { in PrepareOpsToDelegate()
3055 return quasi_static_tensors_producers[t1] < in PrepareOpsToDelegate()
3056 quasi_static_tensors_producers[t2]; in PrepareOpsToDelegate()
3061 const int producer_index = quasi_static_tensors_producers[t]; in PrepareOpsToDelegate()