From 4ac01715447bbdbe088292c9b9166d72a209b244 Mon Sep 17 00:00:00 2001 From: Google AI Edge Date: Sat, 23 Nov 2024 09:55:40 -0800 Subject: [PATCH] Rollback of PR #80574 Reverts 8c3260bf3238829f45b36c08e980a1bd20c3dcc5 PiperOrigin-RevId: 699499360 --- tflite/graph_info.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tflite/graph_info.h b/tflite/graph_info.h index 6df865ee..5f2f0b68 100644 --- a/tflite/graph_info.h +++ b/tflite/graph_info.h @@ -124,7 +124,7 @@ using ControlEdges = std::vector; // (Example: with `greedily`, `control_edges.empty()`, and `nodes_to_partition // == {2, 3}`, the graph // -// /------------\ +// /------------\ // | v // 0 --> 1 --> 2* --> 3* 4 --> 5 // | ^ @@ -136,7 +136,7 @@ using ControlEdges = std::vector; // With an additional control dependency `control_edges == {{3, 4}}` (notated // '==>'), execution of node 4 requires prior execution of node 3: // -// /------------\ +// /------------\ // | v // 0 --> 1 --> 2* --> 3* ==> 4 --> 5 // | ^