-
Notifications
You must be signed in to change notification settings - Fork 762
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c2ffe48
commit dd3791a
Showing
2 changed files
with
62 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
.. _cn_api_incubate_autotune_set_config: | ||
|
||
set_config | ||
--------------------- | ||
|
||
.. py:function:: paddle.incubate.autotune.set_config(config=None) | ||
配置kernel、layout和dataloader的自动调优功能。 | ||
|
||
1. kernel:当开启自动调优,将使用穷举搜索的方法在调优的迭代区间内为算子选择最佳算法,并将其缓存下来。调优参数如下: | ||
|
||
- enable(bool):是否开启kernel的调优功能。默认值:False。 | ||
- tuning_range(list):自动调优开始和结束的迭代序号。默认值:[1, 10]。 | ||
|
||
2. layout:当开启自动调优,将根据设备和数据类型确定最优的数据布局如NCHW或者NHWC。当原始的layout设置并非最优时,将会自动进行layout的转换已提升模型的性能。调优参数如下: | ||
|
||
- enable(bool):是否开启layout的调优功能。默认值:False。 | ||
|
||
3. dataloader:当开启自动调优,将自动选择最佳的num_workers替换原始的配置。调优参数如下: | ||
|
||
- enable(bool):是否开启dataloader的调优功能。默认值:False。 | ||
|
||
参数 | ||
::::::::: | ||
|
||
- **config** (dict|str|None,可选) - 自动调整的配置。如果它是字典,则键是调优类型,值是调优参数构成的字典。如果它是字符串,则表示json文件路径,将根据json 文件内容配置调优参数。默认值:None,使用默认配置。 | ||
|
||
代码示例 | ||
:::::::::: | ||
|
||
COPY-FROM: paddle.incubate.autotune.set_config:auto-tuning |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
.. _cn_api_incubate_autotune_set_config: | ||
|
||
set_config | ||
--------------------- | ||
|
||
.. py:function:: paddle.incubate.autotune.set_config(config=None) | ||
配置kernel、layout和dataloader的自动调优功能。 | ||
|
||
1. kernel:当开启自动调优,将使用穷举搜索的方法在调优的迭代区间内为算子选择最佳算法,并将其缓存下来。调优参数如下: | ||
|
||
- **enable** (bool) - 是否开启kernel的调优功能。默认值:False。 | ||
- **tuning_range** (list) - 自动调优开始和结束的迭代序号。默认值:[1, 10]。 | ||
|
||
2. layout:当开启自动调优,将根据设备和数据类型确定最优的数据布局如NCHW或者NHWC。当原始的layout设置并非最优时,将会自动进行layout的转换已提升模型的性能。调优参数如下: | ||
|
||
- **enable** (bool) - 是否开启layout的调优功能。默认值:False。 | ||
|
||
3. dataloader:当开启自动调优,将自动选择最佳的num_workers替换原始的配置。调优参数如下: | ||
|
||
- **enable** (bool) - 是否开启dataloader的调优功能。默认值:False。 | ||
|
||
参数 | ||
::::::::: | ||
|
||
- **config** (dict|str|None,可选) - 自动调整的配置。如果它是字典,则键是调优类型,值是调优参数构成的字典。如果它是字符串,则表示json文件路径,将根据json 文件内容配置调优参数。默认值:None,使用默认配置。 | ||
|
||
代码示例 | ||
:::::::::: | ||
|
||
COPY-FROM: paddle.incubate.autotune.set_config:auto-tuning |
dd3791a
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
文档预览构建完成,请点击查看: http://preview-pr-4687.paddle-docs-preview.paddlepaddle.org.cn/documentation/docs/zh/api/index_cn.html