Skip to content

Commit

Permalink
Merge pull request #3231 from okuta/bp-fix-3209
Browse files Browse the repository at this point in the history
[backport] Fix warning message for cuDNN
  • Loading branch information
niboshi committed Sep 4, 2017
2 parents 9d44cb1 + c581b72 commit ddbc31b
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions chainer/cuda.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,9 @@ def check_cuda_available():
not getattr(check_cuda_available, '_already_warned', False)):
warnings.warn(
'cuDNN is not enabled.\n'
'Please reinstall chainer after you install cudnn\n'
'(see https://github.com/chainer/chainer#installation).')
'Please reinstall CuPy after you install cudnn\n'
'(see https://docs-cupy.chainer.org/en/stable/install.html'
'#install-cupy-with-cudnn-and-nccl).')
check_cuda_available._already_warned = True


Expand Down

0 comments on commit ddbc31b

Please sign in to comment.