File tree Expand file tree Collapse file tree 3 files changed +3
-5
lines changed Expand file tree Collapse file tree 3 files changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -22,7 +22,8 @@ COPY ./paddle/scripts/docker/root/ /root/
22
22
23
23
RUN apt-get update && \
24
24
apt-get install -y \
25
- git python-pip python-dev openssh-server bison libnccl-dev \
25
+ git python-pip python-dev openssh-server bison \
26
+ libnccl2=2.1.2-1+cuda8.0 libnccl-dev=2.1.2-1+cuda8.0 \
26
27
wget unzip unrar tar xz-utils bzip2 gzip coreutils ntp \
27
28
curl sed grep graphviz libjpeg-dev zlib1g-dev \
28
29
python-matplotlib gcc-4.8 g++-4.8 \
Original file line number Diff line number Diff line change @@ -129,9 +129,6 @@ TEST(NCCL, all_reduce) {
129
129
} // namespace paddle
130
130
131
131
int main (int argc, char ** argv) {
132
- // FIXME(tonyyang-svail):
133
- // Due to the driver issue on our CI, disable for now
134
- return 0 ;
135
132
dev_count = paddle::platform::GetCUDADeviceCount ();
136
133
if (dev_count <= 1 ) {
137
134
LOG (WARNING)
Original file line number Diff line number Diff line change 171
171
EOF
172
172
173
173
if [[ ${WITH_GPU} == " ON" ]]; then
174
- NCCL_DEPS=" apt-get install -y libnccl-dev &&"
174
+ NCCL_DEPS=" apt-get install -y libnccl2=2.1.2-1+cuda8.0 libnccl-dev=2.1.2-1+cuda8.0 &&"
175
175
else
176
176
NCCL_DEPS=" "
177
177
fi
You can’t perform that action at this time.
0 commit comments