You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
GDS feature is disabled for now due to no public cuFile package available.
Once GDS package is released publicly(expected to release this week), need to update the code to use cufile.h header from the public package and/or update conda package to use the public gds package.
The text was updated successfully, but these errors were encountered:
…leDriver and CuImage (#106)
- Enable GDS with GDS v1.0.0
- Re-enable GDS with public package
- Found an issue with a GDS static library and working on WSL
1. Segmentation fault error is happening if we link GDS static library because GDS static library file (libcufile.a) available does not support non-CXX11 ABI (`-D_GLIBCXX_USE_CXX11_ABI=0`). Python wheel with manylinux2014 needs to be compiled with non-CXX ABI
- Workaround the static library issue by using a shared library (if exists on the system) instead.
2. Loading/using GDS shared library(libcufile.so) causes `Assertion failure, file index :cufio-udev line :143` error on WSL
- Workaround the WSL issue by not loading GDS shared library (calling `cuFileDriverOpen()`) if the platform is WSL.
- Do not use GDS if in WSL
- Add `__enter__` and `__exit__` for CuFileDriver
- Add `__enter__` and `__exit__` for CuImage
Resolves#3
Authors:
- Gigon Bae (https://github.com/gigony)
Approvers:
- https://github.com/jakirkham
URL: #106
GDS feature is disabled for now due to no public cuFile package available.
Once GDS package is released publicly(expected to release this week), need to update the code to use cufile.h header from the public package and/or update conda package to use the public gds package.
The text was updated successfully, but these errors were encountered: