WARNING: THIS SITE IS A MIRROR OF GITHUB.COM / IT CANNOT LOGIN OR REGISTER ACCOUNTS / THE CONTENTS ARE PROVIDED AS-IS / THIS SITE ASSUMES NO RESPONSIBILITY FOR ANY DISPLAYED CONTENT OR LINKS / IF YOU FOUND SOMETHING MAY NOT GOOD FOR EVERYONE, CONTACT ADMIN AT ilovescratch@foxmail.com
Skip to content
Open
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions dist_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ class _WheelLinuxConfig(TypedDict):
'image': 'cupy/cupy-release-tools:cuda-runfile-13.0.0-centos7',
'libs': [],
'includes': [],
'preloads': ['nccl'], # TODO(kmaehashi): Re-add cuTENSOR
'preloads': ['cutensor', 'nccl'],
'verify_image': 'nvidia/cuda:{system}',
'verify_systems': [
# Test on all supported CUDA version variants.
Expand Down Expand Up @@ -274,7 +274,7 @@ class _WheelWindowsConfig(TypedDict):
'name': 'cupy-cuda13x',
'kind': 'cuda',
'libs': [],
'preloads': [], # TODO(kmaehashi): Re-add cuTENSOR
'preloads': ['cutensor'],
'cudart_lib': 'cudart64_13', # binary compatible between CUDA 13.x
'check_version': lambda x: 13000 <= x < 13010, # CUDA 13.0
}
Expand Down
3 changes: 0 additions & 3 deletions release-tests/pkg_wheel/test_preload.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,6 @@ def test_cutensor(self):
if cupy.cuda.runtime.runtimeGetVersion() < 10010:
# cuTENSOR is only available for CUDA 10.1+.
return
if 13000 <= cupy.cuda.runtime.runtimeGetVersion():
# TODO(kmaehashi): cuTENSOR is not yet available in CUDA 13+.
return
preload_version = self._get_config()['cutensor']['version']
major, minor, patchlevel = (int(x) for x in preload_version.split('.'))
expected_version = major * 10000 + minor * 100 + patchlevel
Expand Down