From a5acad11e8ead60413192143a0822daa408f67aa Mon Sep 17 00:00:00 2001 From: typhoonzero Date: Fri, 2 Feb 2018 17:04:59 +0800 Subject: [PATCH] update docs --- benchmark/cluster/vgg16/Dockerfile | 2 +- benchmark/cluster/vgg16/README.md | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/benchmark/cluster/vgg16/Dockerfile b/benchmark/cluster/vgg16/Dockerfile index 888486bece..98356cd761 100644 --- a/benchmark/cluster/vgg16/Dockerfile +++ b/benchmark/cluster/vgg16/Dockerfile @@ -1,5 +1,5 @@ #FROM python:2.7.14 -FROM nvidia/cuda:8.0-runtime-ubuntu16.04 +FROM nvidia/cuda:8.0-cudnn5-runtime-ubuntu16.04 RUN apt-get update && apt-get install -y python RUN pip install -U kubernetes opencv-python && apt-get update -y && apt-get install -y iputils-ping libgtk2.0-dev # NOTE: By default CI built wheel packages turn WITH_DISTRIBUTE=OFF, diff --git a/benchmark/cluster/vgg16/README.md b/benchmark/cluster/vgg16/README.md index 9b96f1c02d..11d00b8f85 100644 --- a/benchmark/cluster/vgg16/README.md +++ b/benchmark/cluster/vgg16/README.md @@ -1,4 +1,4 @@ -# Performance for distributed vgg16 +# Performance for Distributed vgg16 ## Test Result @@ -50,7 +50,7 @@ - Trainer Count: 60 - Batch Size: 128 -- Metrics: mini-batch / sec +- Metrics: samples/ sec | PServer Count | 3 | 6 |10 | 20 | | -- | -- | -- | -- | -- | @@ -61,7 +61,7 @@ *The performance gap between Fuild and v2 comes from the network interference.* -## Steps to run the performance test +## Steps to Run the Performance Test 1. You must re-compile PaddlePaddle and enable `-DWITH_DISTRIBUTE` to build PaddlePaddle with distributed support. 1. When the build finishes, copy the output `whl` package located under `build/python/dist` to current directory. @@ -71,6 +71,6 @@ Check the logs for the distributed training progress and analyze the performance. -## Enable verbos logs +## Enable Verbos Logs -Edit `pserver.yaml` and `trainer.yaml` and add an environment variable `GLOG_v=3` to see what happend in detail. +Edit `pserver.yaml` and `trainer.yaml` and add an environment variable `GLOG_v=3` and `GLOG_logtostderr=1` to see what happend in detail. -- GitLab