Skip to content
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

[Bug] GDS doesn't work on WSL #11

Closed
gigony opened this issue Feb 23, 2022 · 0 comments · Fixed by #21
Closed

[Bug] GDS doesn't work on WSL #11

gigony opened this issue Feb 23, 2022 · 0 comments · Fixed by #21

Comments

@gigony
Copy link

gigony commented Feb 23, 2022

GDS doesn't work on WSL even for compatibility mode.

test.py

import cupy
import kvikio

a = cupy.arange(100)
f = kvikio.CuFile("test-file", "w")
# Write whole array to file
f.write(a)
f.close()

b = cupy.empty_like(a)
f = kvikio.CuFile("test-file", "r")
# Read whole array from file
f.read(b)
assert all(a == b)
❯ python test.py
Assertion failure, file index :cufio-udev  line :143
[1]    13856 abort      python test.py

FYI, cuCIM handles the issue by checking platform and skip executing cuFileDriverOpen().

Related Issues or Pull Requests

madsbk added a commit to madsbk/kvikio that referenced this issue Feb 28, 2022
madsbk added a commit that referenced this issue Mar 15, 2022
vuule pushed a commit to vuule/kvikio that referenced this issue Nov 8, 2023
)

Fixes: rapidsai/cudf#14212

When categories are None in the CategoricalDtype, the ordered parameter needs to be preserved. This PR handles this case.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant