Home
last modified time | relevance | path

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

/external/tensorflow/tensorflow/lite/delegates/gpu/common/transformations/
Dadd_quant_adjustments.cc57 graph->InsertNodeAfter(node->id, &quant_and_dequant_node); in ApplyToNode()
/external/tensorflow/tensorflow/lite/delegates/gpu/common/
Dmodel_test.cc479 TEST(Model, InsertNodeAfter) { in TEST() argument
500 absl::Status status = graph.InsertNodeAfter(node1->id, &new_node1); in TEST()
505 status = graph.InsertNodeAfter(/*id=*/100, &new_node2); in TEST()
508 status = graph.InsertNodeAfter(node2->id, &new_node2); in TEST()
Dmodel.h129 absl::Status InsertNodeAfter(NodeId id, Node** new_node);
Dmodel.cc124 absl::Status GraphFloat32::InsertNodeAfter(NodeId id, Node** new_node) { in InsertNodeAfter() function in tflite::gpu::GraphFloat32