-
Notifications
You must be signed in to change notification settings - Fork 919
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] 10 Minutes to cuDF and CuPy throws AttributeError #10612
Comments
Looks like I introduced this issue through #10594, as my containers were picking up the newest version of CuPy (10.3.0) that gave a FutureWarning at the use of Perhaps we should continue using |
Yeah, we currently support cupy >>> import cupy as cp
>>> cp.fromDlpack
<built-in function fromDlpack>
>>> cp.from_dlpack
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/nvme/0/pgali/envs/cudfdev/lib/python3.8/site-packages/cupy/__init__.py", line 874, in __getattr__
raise AttributeError(
AttributeError: module 'cupy' has no attribute 'from_dlpack'
>>> cp.__version__
'9.5.0' cc: @shwina @rapidsai/ops just FYI. |
To address @robocopnixon's original issue, it looks like one would need to use This is unfortunate, but I would agree it's too small a change for a patch release right now. |
Describe the bug
The 10 Minutes to cuDF and CuPy throws the following error:
AttributeError: module 'cupy' has no attribute 'from_dlpack'
Steps/Code to reproduce bug
Run the notebook.
Expected behavior
This error should not appear in the notebook.
Environment overview (please complete the following information)
docker pull
&docker run
commands useddocker pull rapidsai/rapidsai-core:22.02-cuda11.2-runtime-centos7-py3.8
docker run --gpus all --rm -it -p 8888:8888 -p 8787:8787 -p 8786:8786 -v ~/extra:/rapids/notebooks/extra rapidsai/rapidsai-core-nightly:22.04-cuda11.2-runtime-centos7-py3.8
The text was updated successfully, but these errors were encountered: