-
Hi everyone, I'm not able to import cusolver in any installable (>=0.1.60) version of jaxlib. I was working for version 0.1.55 which seems not to be available anymore.
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Can you say more about the system you're using? This seems to work, for example, on a Colab CPU or GPU runtime with jaxlib 0.1.70: import jaxlib
print(jaxlib.__version__)
# 0.1.70
from jaxlib import cusolver
print(cusolver)
# <module 'jaxlib.cusolver' from '/usr/local/lib/python3.7/dist-packages/jaxlib/cusolver.py'> Also, note that if you want to install older jaxlib versions, while they're not available on PyPI, you can use a command like the following:
(we have to periodically remove older versions from PyPI because of their storage limits) |
Beta Was this translation helpful? Give feedback.
Can you say more about the system you're using? This seems to work, for example, on a Colab CPU or GPU runtime with jaxlib 0.1.70:
Also, note that if you want to install older jaxlib versions, while they're not available on PyPI, you can use a command like the following:
(we have to periodically remove older versions from PyPI because of their storage limits)