Searched refs:InsertNodeAfter (Results 1 – 4 of 4) sorted by relevance
57 graph->InsertNodeAfter(node->id, &quant_and_dequant_node); in ApplyToNode()
479 TEST(Model, InsertNodeAfter) { in TEST() argument500 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()
129 absl::Status InsertNodeAfter(NodeId id, Node** new_node);
124 absl::Status GraphFloat32::InsertNodeAfter(NodeId id, Node** new_node) { in InsertNodeAfter() function in tflite::gpu::GraphFloat32