-
Notifications
You must be signed in to change notification settings - Fork 6.8k
Removes unnecessary graphics-drivers ppa repository #13814
Conversation
@mxnet-label-bot update [pr-awaiting-review] |
apt install -y software-properties-common | ||
|
||
# Adding ppas frequently fails due to busy gpg servers, retry 5 times with 5 minute delays. | ||
for i in 1 2 3 4 5; do add-apt-repository -y ppa:graphics-drivers && break || sleep 300; done | ||
|
||
# Retrieve ppa:graphics-drivers and install nvidia-drivers. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why do we need the ubuntu_nvidia.sh
at all? CUDA is always part of the nvidia base image, no?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I believe this installs the nvidia drivers and libcuda.so - which is needed by mxnet
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@lebeg - I did a little more digging: /~https://github.com/apache/incubator-mxnet/blob/master/ci/docker/Dockerfile.build.ubuntu_build_cuda#L47
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oh, I see. Thanks!
@mxnet-label-bot update [pr-awaiting-merge] |
* upstream/master: (109 commits) Code modification for testcases of various network models in directory example (apache#12498) [CI] Prevent timeouts when rebuilding containers with docker. (apache#13818) fix Makefile for rpkg (apache#13590) change to compile time (apache#13835) Disabled flaky test (apache#13758) Improve license_header tool by only traversing files under revision c… (apache#13803) Removes unneeded nvidia driver ppa installation (apache#13814) Add Local test stage and option to jump directly to menu item from commandline (apache#13809) Remove MXNET_STORAGE_FALLBACK_LOG_VERBOSE from test_autograd.py (apache#13830) Fix scala doc build break for v1.3.1 (apache#13820) [MXNET-1263] Unit Tests for Java Predictor and Object Detector APIs (apache#13794) [MXNET-1260] Float64 DType computation support in Scala/Java (apache#13678) onnx export ops (apache#13821) [MXNET-880] ONNX export: Random uniform, Random normal, MaxRoiPool (apache#13676) fix minor indentation (apache#13827) Fixing a symlink issue with R install (apache#13708) remove useless code (apache#13777) ONNX ops: norm exported and lpnormalization imported (apache#13806) Add new Maven build for Scala package (apache#13819) Dockerfiles for Publish Testing (apache#13707) ...
Description
Removes superfluous ppa repository add in ci script that installs nvidia dependencies
Checklist
Essentials
Please feel free to remove inapplicable items for your PR.
Changes
Comments