Skip to content

Commit f34f502

Browse files
authored
Merge pull request #702 from luotao1/unitest
fix bug when run test_layerHelpers multiple times
2 parents 9619015 + 6ce706c commit f34f502

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

doc_cn/howto/build_docker_image.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,13 @@ PaddlePaddle的Docker Image构建源码放置在 ``${源码根目录}/paddle/scr
1818
.. code-block:: bash
1919
2020
cd ${源码根目录}/paddle/scripts/docker/
21-
docker build --build-arg LOWEST_DL_SPEED=50K\
21+
docker build --build-arg LOWEST_DL_SPEED=50K \
2222
--build-arg WITH_GPU=ON \
2323
--tag paddle_gpu:latest .
2424
2525
其中,``--build-arg`` 传入的配置参数包括:
2626

27-
- LOWEST\_DL\_SPEED\: 在多线程下载过程中,设置下线线程的最低速度
27+
- LOWEST\_DL\_SPEED\: 在多线程下载过程中,设置下载线程的最低速度
2828

2929
- 默认单位是Bytes,但可以传入10K、10M、或10G等这样的单位。
3030
- 如果小于这个速度,那么这个线程将会关闭。当所有的线程都关闭了,那么下载进程将会重启。

python/paddle/trainer_config_helpers/tests/configs/run_tests.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ set -e
55

66
protostr=`dirname $0`/protostr
77

8-
files=`ls $protostr | grep -v "unitest"`
8+
files=`ls $protostr | grep -v "unittest"`
99

1010
./generate_protostr.sh
1111

0 commit comments

Comments
 (0)