From a1d910b1440af8e648f0be556633a3784e2efc04 Mon Sep 17 00:00:00 2001 From: Yu Yang Date: Tue, 17 Apr 2018 14:23:29 +0800 Subject: [PATCH] Fix line witdth --- python/paddle/fluid/parallel_executor.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/python/paddle/fluid/parallel_executor.py b/python/paddle/fluid/parallel_executor.py index f9741fbed6e..190efe6c1bc 100644 --- a/python/paddle/fluid/parallel_executor.py +++ b/python/paddle/fluid/parallel_executor.py @@ -128,8 +128,10 @@ class ParallelExecutor(object): Args: fetch_list(list): The fetched variable names - feed(list|dict|None): The feed variables. If the feed is a dict, tensors in that dict will be splitted - into each devices. If the feed is a list, each element of the list will be copied to each device. + feed(list|dict|None): The feed variables. If the feed is a dict, + tensors in that dict will be splitted into each devices. If + the feed is a list, each element of the list will be copied + to each device. feed_dict: Alias for feed parameter, for backward compatibility. Returns: fetched result list. -- GitLab