This repository has been archived by the owner on Jan 22, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Split cuda image into runtime and devel
- Loading branch information
Showing
34 changed files
with
277 additions
and
48 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
FROM cuda:7.0-runtime | ||
MAINTAINER NVIDIA CORPORATION <digits@nvidia.com> | ||
|
||
RUN yum install -y \ | ||
cuda-core-$CUDA_PKG_VERSION \ | ||
cuda-misc-headers-$CUDA_PKG_VERSION \ | ||
cuda-command-line-tools-$CUDA_PKG_VERSION \ | ||
cuda-license-$CUDA_PKG_VERSION \ | ||
cuda-cublas-dev-$CUDA_PKG_VERSION \ | ||
cuda-cufft-dev-$CUDA_PKG_VERSION \ | ||
cuda-curand-dev-$CUDA_PKG_VERSION \ | ||
cuda-cusparse-dev-$CUDA_PKG_VERSION \ | ||
cuda-npp-dev-$CUDA_PKG_VERSION \ | ||
cuda-cudart-dev-$CUDA_PKG_VERSION \ | ||
cuda-driver-dev-$CUDA_PKG_VERSION \ | ||
gcc-c++ && \ | ||
rm -rf /var/cache/yum/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
FROM cuda:7.5-runtime | ||
MAINTAINER NVIDIA CORPORATION <digits@nvidia.com> | ||
|
||
RUN yum install -y \ | ||
cuda-core-$CUDA_PKG_VERSION \ | ||
cuda-misc-headers-$CUDA_PKG_VERSION \ | ||
cuda-command-line-tools-$CUDA_PKG_VERSION \ | ||
cuda-license-$CUDA_PKG_VERSION \ | ||
cuda-cublas-dev-$CUDA_PKG_VERSION \ | ||
cuda-cufft-dev-$CUDA_PKG_VERSION \ | ||
cuda-curand-dev-$CUDA_PKG_VERSION \ | ||
cuda-cusparse-dev-$CUDA_PKG_VERSION \ | ||
cuda-npp-dev-$CUDA_PKG_VERSION \ | ||
cuda-cudart-dev-$CUDA_PKG_VERSION \ | ||
cuda-driver-dev-$CUDA_PKG_VERSION \ | ||
gcc-c++ && \ | ||
rm -rf /var/cache/yum/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
FROM cuda | ||
|
||
RUN yum install -y \ | ||
cuda-samples-$CUDA_PKG_VERSION && \ | ||
rm -rf /var/cache/yum/* | ||
|
||
WORKDIR /usr/local/cuda/samples/1_Utilities/bandwidthTest | ||
RUN make | ||
|
||
CMD ./bandwidthTest --mode=shmoo |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
FROM cuda | ||
|
||
RUN yum install -y \ | ||
cuda-samples-$CUDA_PKG_VERSION && \ | ||
rm -rf /var/cache/yum/* | ||
|
||
WORKDIR /usr/local/cuda/samples/1_Utilities/deviceQuery | ||
RUN make | ||
|
||
CMD ./deviceQuery |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
FROM cuda | ||
|
||
RUN yum install -y \ | ||
cuda-samples-$CUDA_PKG_VERSION && \ | ||
rm -rf /var/cache/yum/* | ||
|
||
WORKDIR /usr/local/cuda/samples/0_Simple/matrixMulCUBLAS | ||
RUN make | ||
|
||
CMD ./matrixMulCUBLAS -sizemult=10 |
2 changes: 1 addition & 1 deletion
2
samples/nvidia-smi/Dockerfile → samples/centos/nvidia-smi/Dockerfile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
FROM cuda:latest | ||
FROM cuda | ||
|
||
CMD nvidia-smi -q |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
FROM cuda | ||
|
||
RUN yum install -y \ | ||
cuda-samples-$CUDA_PKG_VERSION && \ | ||
rm -rf /var/cache/yum/* | ||
|
||
WORKDIR /usr/local/cuda/samples/0_Simple/vectorAdd | ||
RUN make | ||
|
||
CMD ./vectorAdd |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
FROM cuda | ||
|
||
RUN apt-get update && apt-get install -y --no-install-recommends \ | ||
cuda-samples-$CUDA_PKG_VERSION && \ | ||
rm -rf /var/lib/apt/lists/* | ||
|
||
WORKDIR /usr/local/cuda/samples/1_Utilities/bandwidthTest | ||
RUN make | ||
|
||
CMD ./bandwidthTest --mode=shmoo |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
FROM cuda | ||
|
||
RUN apt-get update && apt-get install -y --no-install-recommends \ | ||
cuda-samples-$CUDA_PKG_VERSION && \ | ||
rm -rf /var/lib/apt/lists/* | ||
|
||
WORKDIR /usr/local/cuda/samples/1_Utilities/deviceQuery | ||
RUN make | ||
|
||
CMD ./deviceQuery |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
FROM cuda | ||
|
||
RUN apt-get update && apt-get install -y --no-install-recommends \ | ||
cuda-samples-$CUDA_PKG_VERSION && \ | ||
rm -rf /var/lib/apt/lists/* | ||
|
||
WORKDIR /usr/local/cuda/samples/0_Simple/matrixMulCUBLAS | ||
RUN make | ||
|
||
CMD ./matrixMulCUBLAS -sizemult=10 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
FROM cuda | ||
|
||
CMD nvidia-smi -q |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
FROM cuda | ||
|
||
RUN apt-get update && apt-get install -y --no-install-recommends \ | ||
cuda-samples-$CUDA_PKG_VERSION && \ | ||
rm -rf /var/lib/apt/lists/* | ||
|
||
WORKDIR /usr/local/cuda/samples/0_Simple/vectorAdd | ||
RUN make | ||
|
||
CMD ./vectorAdd |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
FROM cuda:6.5-runtime | ||
MAINTAINER NVIDIA CORPORATION <digits@nvidia.com> | ||
|
||
RUN apt-get update && apt-get install -y --no-install-recommends --force-yes \ | ||
cuda-core-$CUDA_PKG_VERSION \ | ||
cuda-misc-headers-$CUDA_PKG_VERSION \ | ||
cuda-command-line-tools-$CUDA_PKG_VERSION \ | ||
cuda-license-$CUDA_PKG_VERSION \ | ||
cuda-cublas-dev-$CUDA_PKG_VERSION \ | ||
cuda-cufft-dev-$CUDA_PKG_VERSION \ | ||
cuda-curand-dev-$CUDA_PKG_VERSION \ | ||
cuda-cusparse-dev-$CUDA_PKG_VERSION \ | ||
cuda-npp-dev-$CUDA_PKG_VERSION \ | ||
cuda-cudart-dev-$CUDA_PKG_VERSION \ | ||
cuda-driver-dev-$CUDA_PKG_VERSION && \ | ||
rm -rf /var/lib/apt/lists/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
FROM cuda:7.0-runtime | ||
MAINTAINER NVIDIA CORPORATION <digits@nvidia.com> | ||
|
||
RUN apt-get update && apt-get install -y --no-install-recommends --force-yes \ | ||
cuda-core-$CUDA_PKG_VERSION \ | ||
cuda-misc-headers-$CUDA_PKG_VERSION \ | ||
cuda-command-line-tools-$CUDA_PKG_VERSION \ | ||
cuda-license-$CUDA_PKG_VERSION \ | ||
cuda-nvrtc-dev-$CUDA_PKG_VERSION \ | ||
cuda-cusolver-dev-$CUDA_PKG_VERSION \ | ||
cuda-cublas-dev-$CUDA_PKG_VERSION \ | ||
cuda-cufft-dev-$CUDA_PKG_VERSION \ | ||
cuda-curand-dev-$CUDA_PKG_VERSION \ | ||
cuda-cusparse-dev-$CUDA_PKG_VERSION \ | ||
cuda-npp-dev-$CUDA_PKG_VERSION \ | ||
cuda-cudart-dev-$CUDA_PKG_VERSION \ | ||
cuda-driver-dev-$CUDA_PKG_VERSION && \ | ||
rm -rf /var/lib/apt/lists/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
cudnn2 |
3 changes: 2 additions & 1 deletion
3
ubuntu-14.04/cuda/7.0/cudnn-v2/Dockerfile → ...tu-14.04/cuda/7.0/devel/cudnn2/Dockerfile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
cudnn2 |
Oops, something went wrong.