From fe9bfbcac3eabb20a5a0e422637a38d4275068ff Mon Sep 17 00:00:00 2001 From: eladc4 Date: Mon, 6 Jan 2025 13:48:44 +0200 Subject: [PATCH] Fix PR comment --- .../core/common/graph/memory_graph/max_cut_astar.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/model_compression_toolkit/core/common/graph/memory_graph/max_cut_astar.py b/model_compression_toolkit/core/common/graph/memory_graph/max_cut_astar.py index 7448ed2cf..b7005fd4e 100644 --- a/model_compression_toolkit/core/common/graph/memory_graph/max_cut_astar.py +++ b/model_compression_toolkit/core/common/graph/memory_graph/max_cut_astar.py @@ -100,7 +100,7 @@ def __init__(self, memory_graph: MemoryGraph): edges_src_ab = [(src_dummy_a, src_dummy_b)] edges_src_ba = [(src_dummy_b, src_a) for src_a in memory_graph.sources_a] - # Target Cut (Adding 2 consecutive dummy nodes ao the final cut will include only dummy tensors). + # Target Cut (Adding 2 consecutive dummy nodes so the final cut will include only dummy tensors). target_dummy_a = next(gen_a) target_dummy_a2 = next(gen_a) target_dummy_b = next(gen_b)