From cff5232e76ab6b424fc4453dc3cdc463f5680030 Mon Sep 17 00:00:00 2001 From: Luo Tao Date: Fri, 15 Jun 2018 17:58:30 +0800 Subject: [PATCH] remove Non-ASCII character '\xc2' --- python/paddle/fluid/layers/control_flow.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/python/paddle/fluid/layers/control_flow.py b/python/paddle/fluid/layers/control_flow.py index 532ffd754db..82f3d66ded9 100644 --- a/python/paddle/fluid/layers/control_flow.py +++ b/python/paddle/fluid/layers/control_flow.py @@ -236,7 +236,7 @@ class ParallelDo(object): """ ParallelDo is used to represent multi-thread data parallel processing. - Its vanilla implementation can be shown as the following (:math:`|` means + Its vanilla implementation can be shown as the following (:math:`|` means single thread and :math:`||||` means multiple threads) .. code-block:: text @@ -252,7 +252,7 @@ class ParallelDo(object): |||| Compute backward pass in parallel | accumulate param@grad from different devices to the first device | Merge input@grad from different devices -  | Copy param@grad to the place of parallel_do_op + | Copy param@grad to the place of parallel_do_op Examples: -- GitLab