You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 22, 2024. It is now read-only.
So I was probing the current cuda image, and I'm thinking it could stand to shed a little weight:
$ docker imagesREPOSITORY TAG IMAGE ID CREATED VIRTUAL SIZEcudnn v2-7.0 80a8e0efea8d 21 hours ago 2.041 GBcuda 7.0 f8abb195d52b 21 hours ago 2.012 GBubuntu 14.04 e9ae3c220b23 9 days ago 187.9 MB
A quick check on the just the size of the cuda libraries reviles:
$ docker run -it cuda:7.0 du -sh usr/local/cuda-7.0/1.5G usr/local/cuda-7.0/
$ docker run -it cuda:7.0 du -sh usr/local/cuda-7.0/*4.0K LICENSE4.0K README43M bin170M doc5.9M extras0 include0 lib64180M libnsight122M libnvvp22M nvvm184M samples272K share592K src790M targets160K tools
So we've have about about 324.1 megabytes coming in elsewhere. I'm seeing Xserver and perhaps other unessential deps installed that users could get themselves if need be. So perhaps we could cut a little fat by tweaking call to apt-get install. Also, not sure if the samples could be installed later, but that might be nice thing to toss into a higher tag. Others not deploying cuda containers to cloud instances might still want it.
The text was updated successfully, but these errors were encountered:
So I was probing the current cuda image, and I'm thinking it could stand to shed a little weight:
A quick check on the just the size of the cuda libraries reviles:
So we've have about about 324.1 megabytes coming in elsewhere. I'm seeing Xserver and perhaps other unessential deps installed that users could get themselves if need be. So perhaps we could cut a little fat by tweaking call to
apt-get install
. Also, not sure if the samples could be installed later, but that might be nice thing to toss into a higher tag. Others not deploying cuda containers to cloud instances might still want it.The text was updated successfully, but these errors were encountered: