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
When using conda method, we specify the raft version, but not when using pip. I am specifically interested in installing raft 12.02 and above that added support for fp16 in this PR. However, with my installation, I see that the support is missing, even though I install latest version of all the required dependencies. What am I missing?
Thanks!
The text was updated successfully, but these errors were encountered:
Hi @shekhars-li, thanks for filing this issue. I transferred it to the RAFT repository.
You can check the installed version of RAFT with:
importpylibraftprint(pylibraft.__version__)
The latest pip installation commands can be found at https://docs.rapids.ai/install. Click "pip" in the install selector, then you can see the RAPIDS version:
A couple of notes to add to Bradley's explanation above:
I am confused how raft libraries are installed
If by "libraries" you are referring to the C++, you cannot (currently) install the C++ raft library separately when installing with pip. Unlike conda, pip is not designed for generically installing native libraries, only Python packages. Therefore, the raft libraries are actually bundled with the raft Python packages pylibraft and raft-dask. You'll notice that the wheels for pylibraft and raft-dask are much, much larger than the corresponding conda packages for this reason.
I am specifically interested in installing raft 12.02 and above that added support for fp16 in this #2085.
Note that with this installation command you've only specified the YY segment. I don't know if that was intentional, but you can also specify something like ==24.02.* and be more explicit about what you want.
Hi,
I am installing raft using pip method. However, I am confused how raft libraries are installed and how can I check the version of it?
When using conda method, we specify the raft version, but not when using pip. I am specifically interested in installing raft 12.02 and above that added support for fp16 in this PR. However, with my installation, I see that the support is missing, even though I install latest version of all the required dependencies. What am I missing?
Thanks!
The text was updated successfully, but these errors were encountered: