Skip to content

Commit

Permalink
[DOCKER] CUDA upgrade to 9.0 to acommodate tensorflow-gpu (1.10.0). (a…
Browse files Browse the repository at this point in the history
  • Loading branch information
srkreddy1238 authored and tqchen committed Sep 25, 2018
1 parent 1de91d0 commit e8d6d9a
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
5 changes: 4 additions & 1 deletion docker/Dockerfile.ci_gpu
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# CI docker GPU env
FROM nvidia/cuda:8.0-cudnn7-devel
FROM nvidia/cuda:9.0-cudnn7-devel

# Base scripts
RUN apt-get update --fix-missing
Expand Down Expand Up @@ -62,6 +62,9 @@ RUN pip3 install Pillow
COPY install/ubuntu_install_vulkan.sh /install/ubuntu_install_vulkan.sh
RUN bash /install/ubuntu_install_vulkan.sh

COPY install/ubuntu_install_tensorflow.sh /install/ubuntu_install_tensorflow.sh
RUN bash /install/ubuntu_install_tensorflow.sh

# AutoTVM deps
COPY install/ubuntu_install_redis.sh /install/ubuntu_install_redis.sh
RUN bash /install/ubuntu_install_redis.sh
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile.demo_gpu
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Minimum docker image for demo purposes
# prebuilt-image: tvmai/demo-gpu
FROM nvidia/cuda:8.0-cudnn7-devel
FROM nvidia/cuda:9.0-cudnn7-devel

RUN apt-get update --fix-missing

Expand Down
1 change: 1 addition & 0 deletions docker/install/ubuntu_install_tensorflow.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
pip3 install tensorflow-gpu

0 comments on commit e8d6d9a

Please sign in to comment.