File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -75,7 +75,7 @@ ARG framework_support_installable=sagemaker_tensorflow_container-2.0.0.tar.gz
75
75
COPY $framework_support_installable .
76
76
ARG TF_URL="https://s3-us-west-2.amazonaws.com/tensorflow-aws/1.13/AmazonLinux/cpu/latest-patch-s3_testcopy.patch/tensorflow-1.13.1-cp36-cp36m-linux_x86_64.whl"
77
77
78
- RUN ${PIP} --no-cache-dir install --upgrade pip setuptools
78
+ RUN ${PIP} --no-cache-dir install --upgrade pip setuptools
79
79
80
80
# Some TF tools expect a "python" binary
81
81
RUN ln -s $(which ${PYTHON}) /usr/local/bin/python
@@ -98,7 +98,7 @@ RUN ${PIP} install --no-cache-dir -U \
98
98
# the library version to be overwritten
99
99
${PIP} install --force-reinstall --no-cache-dir -U \
100
100
${TF_URL} \
101
- horovod && \
101
+ horovod==0.16.4 && \
102
102
${PIP} install --no-cache-dir -U $framework_support_installable && \
103
103
rm -f $framework_support_installable && \
104
104
${PIP} uninstall -y --no-cache-dir \
Original file line number Diff line number Diff line change @@ -140,7 +140,7 @@ RUN ${PIP} install --no-cache-dir -U \
140
140
141
141
# Install Horovod, temporarily using CUDA stubs
142
142
RUN ldconfig /usr/local/cuda-10.0/targets/x86_64-linux/lib/stubs && \
143
- HOROVOD_GPU_ALLREDUCE=NCCL HOROVOD_WITH_TENSORFLOW=1 ${PIP} install --no-cache-dir horovod && \
143
+ HOROVOD_GPU_ALLREDUCE=NCCL HOROVOD_WITH_TENSORFLOW=1 ${PIP} install --no-cache-dir horovod==0.16.4 && \
144
144
ldconfig
145
145
146
146
# Allow OpenSSH to talk to containers without asking for confirmation
You can’t perform that action at this time.
0 commit comments