Skip to content

Commit

Permalink
Merge pull request cupy#5726 from takagi/cudnn-8.2.4
Browse files Browse the repository at this point in the history
Support cuDNN 8.2.4
  • Loading branch information
kmaehashi authored and chainer-ci committed Sep 11, 2021
1 parent f961a44 commit 909912f
Showing 1 changed file with 18 additions and 18 deletions.
36 changes: 18 additions & 18 deletions cupyx/tools/install_library.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,29 +67,29 @@ def _make_cudnn_record(

# Latest cuDNN versions: https://developer.nvidia.com/rdp/cudnn-download
_cudnn_records.append(_make_cudnn_record(
'11.4', '8.2.2',
'cudnn-11.4-linux-x64-v8.2.2.26.tgz',
'cudnn-11.4-windows-x64-v8.2.2.26.zip'))
'11.4', '8.2.4',
'cudnn-11.4-linux-x64-v8.2.4.15.tgz',
'cudnn-11.4-windows-x64-v8.2.4.15.zip'))
_cudnn_records.append(_make_cudnn_record(
'11.3', '8.2.2',
'cudnn-11.4-linux-x64-v8.2.2.26.tgz',
'cudnn-11.4-windows-x64-v8.2.2.26.zip'))
'11.3', '8.2.4',
'cudnn-11.4-linux-x64-v8.2.4.15.tgz',
'cudnn-11.4-windows-x64-v8.2.4.15.zip'))
_cudnn_records.append(_make_cudnn_record(
'11.2', '8.2.2',
'cudnn-11.4-linux-x64-v8.2.2.26.tgz',
'cudnn-11.4-windows-x64-v8.2.2.26.zip'))
'11.2', '8.2.4',
'cudnn-11.4-linux-x64-v8.2.4.15.tgz',
'cudnn-11.4-windows-x64-v8.2.4.15.zip'))
_cudnn_records.append(_make_cudnn_record(
'11.1', '8.2.2',
'cudnn-11.4-linux-x64-v8.2.2.26.tgz',
'cudnn-11.4-windows-x64-v8.2.2.26.zip'))
'11.1', '8.2.4',
'cudnn-11.4-linux-x64-v8.2.4.15.tgz',
'cudnn-11.4-windows-x64-v8.2.4.15.zip'))
_cudnn_records.append(_make_cudnn_record(
'11.0', '8.2.2',
'cudnn-11.4-linux-x64-v8.2.2.26.tgz',
'cudnn-11.4-windows-x64-v8.2.2.26.zip'))
'11.0', '8.2.4',
'cudnn-11.4-linux-x64-v8.2.4.15.tgz',
'cudnn-11.4-windows-x64-v8.2.4.15.zip'))
_cudnn_records.append(_make_cudnn_record(
'10.2', '8.2.2',
'cudnn-10.2-linux-x64-v8.2.2.26.tgz',
'cudnn-10.2-windows10-x64-v8.2.2.26.zip'))
'10.2', '8.2.4',
'cudnn-10.2-linux-x64-v8.2.4.15.tgz',
'cudnn-10.2-windows10-x64-v8.2.4.15.zip'))
_cudnn_records.append(_make_cudnn_record(
'10.1', '8.0.5',
'cudnn-10.1-linux-x64-v8.0.5.39.tgz',
Expand Down

0 comments on commit 909912f

Please sign in to comment.