Skip to content

TST: fix cupy to_device test on multiple devices #326

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
May 15, 2025
Merged
Changes from 1 commit
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
14 changes: 8 additions & 6 deletions tests/test_cupy.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,17 @@
def test_to_device_with_stream():
devices = xp.__array_namespace_info__().devices()
streams = [
Stream(),
Stream(non_blocking=True),
Stream(null=True),
Stream(ptds=True),
123, # dlpack stream
lambda: Stream(),
lambda: Stream(non_blocking=True),
lambda: Stream(null=True),
lambda: Stream(ptds=True),
lambda: 123, # dlpack stream
]

a = xp.asarray([1, 2, 3])
for dev in devices:
for stream in streams:
for stream_gen in streams:
with dev:
stream = stream_gen()
b = to_device(a, dev, stream=stream)
assert device(b) == dev
Loading