From 7336eafc737e67782ed08fbb97af422094af58c7 Mon Sep 17 00:00:00 2001 From: htpeng Date: Wed, 16 Jul 2025 09:05:37 +0000 Subject: [PATCH] =?UTF-8?q?=E6=96=87=E4=BB=B6=E5=90=8Dseach=5Fspace.yaml?= =?UTF-8?q?=E6=8B=BC=E5=86=99=E9=94=99=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: htpeng --- docs/zh/server/development/ai4c/ai4c_user_manual.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/zh/server/development/ai4c/ai4c_user_manual.md b/docs/zh/server/development/ai4c/ai4c_user_manual.md index 054c4e9..9b5e375 100644 --- a/docs/zh/server/development/ai4c/ai4c_user_manual.md +++ b/docs/zh/server/development/ai4c/ai4c_user_manual.md @@ -332,7 +332,7 @@ OppCompileCommand = %(BaseCommand)s \ -fplugin-arg-rtl_unroll_autotune_plugin_gcc12-generate=%(OppDir)s ``` -其次,我们可以准备一份额外的参数搜索空间文件`seach_space.yaml`,自定义缩小参数空间。例如,动态库默认选择循环展开系数空间为$\{0, 2^0=1, 2^1=2, ..., 2^6=64\}$,我们可以把搜索空间调整为$\{0, 2^0=1, 2^1=2, ..., 2^5=32\}$。 +其次,我们可以准备一份额外的参数搜索空间文件`search_space.yaml`,自定义缩小参数空间。例如,动态库默认选择循环展开系数空间为$\{0, 2^0=1, 2^1=2, ..., 2^6=64\}$,我们可以把搜索空间调整为$\{0, 2^0=1, 2^1=2, ..., 2^5=32\}$。 ```yaml CodeRegion: @@ -423,7 +423,7 @@ OppCompileCommand = %(BaseCommand)s \ -fplugin-arg-coarse_option_tuning_plugin_gcc12-generate=%(OppDir)s ``` -其次,我们可以准备一份额外的参数搜索空间文件`seach_space.yaml`,自定义参数空间。例如,在以下文件中,我们将搜索空间限制在预取相关选项上的调优。 +其次,我们可以准备一份额外的参数搜索空间文件`search_space.yaml`,自定义参数空间。例如,在以下文件中,我们将搜索空间限制在预取相关选项上的调优。 ```yaml CodeRegion: -- Gitee