Created
March 30, 2017 13:34
-
-
Save ando-takahiro/08c11e5a87da9304afa3a0437c75fead to your computer and use it in GitHub Desktop.
chainer Dockerfile for pascal arch GPU: https://devtalk.nvidia.com/default/topic/941354/all-curand-samples-fail-with-gtx-1080-on-cuda-7-5/
This file contains hidden or 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
| FROM nvidia/cuda:8.0-cudnn5-devel | |
| RUN apt-get update -y && \ | |
| apt-get install -y --no-install-recommends \ | |
| python-dev \ | |
| python-setuptools \ | |
| python-pip && \ | |
| pip install --upgrade pip && \ | |
| rm -rf /var/lib/apt/lists/* /var/cache/apt/archives/* | |
| RUN pip install chainer==1.22.0 |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
If you got this error
CURAND_STATUS_LAUNCH_FAILURE, when using official chainer docker image, above file would help you.