From 9d233d3d077833e2346adc6de885f030ded38b55 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9D=8E=E9=9C=87?= <1036281414@qq.com> Date: Thu, 23 Nov 2023 15:12:39 +0000 Subject: [PATCH] fix the rewrite priority_size range typo MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: 李震 <1036281414@qq.com> --- ai_infra/imap_engine.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ai_infra/imap_engine.py b/ai_infra/imap_engine.py index 21c3aa1..692a1f2 100644 --- a/ai_infra/imap_engine.py +++ b/ai_infra/imap_engine.py @@ -66,7 +66,7 @@ class EngineIMAP(): """ Logic optimization by "rewrite" algorithm, mainly for area reduction Args: - priority_size (int, optional): The max store size of the cut for a node. Range of [6,20]. Defaults to 10. + priority_size (int, optional): The max store size of the cut for a node. Range of [6,12]. Defaults to 10. cut_size (int, optional): The max input size of a cut. Range of [2,4]. Defaults to 4. level_preserve (bool, optional): Preserve depth after optimization. Defaults to False. zero_gain (bool, optional): Allow zero-cost-based local replacement. Defaults to False. -- Gitee