From c96b9cbbf124e74d82df68d9b41db4ee22dcd742 Mon Sep 17 00:00:00 2001 From: JZ-LIANG Date: Wed, 6 Sep 2023 15:10:02 +0800 Subject: [PATCH] update doc (#56957) --- python/paddle/distributed/auto_parallel/static/engine.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/python/paddle/distributed/auto_parallel/static/engine.py b/python/paddle/distributed/auto_parallel/static/engine.py index 2b66ac4e16a..07bebf3d0c5 100644 --- a/python/paddle/distributed/auto_parallel/static/engine.py +++ b/python/paddle/distributed/auto_parallel/static/engine.py @@ -54,10 +54,8 @@ from .process_group import get_all_process_groups, new_process_group class Engine: """ - An Engine object can provide the full power of auto parallel to users. - With the help of it, users can easily obtain the abilities of the - distributed training and inference. It also support the dynamic graph and - static graph at the same time. + An High-Level API for auto parallel, which could be used for distributed Training (engine.fit) and Inferenced (engine.predict). + Static graph mode is supported natively, Dynamic graph mode is also supported under `@to_static `_ . Args: model (paddle.nn.Layer, optional): The model is an instance of -- GitLab