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
Copy file name to clipboardExpand all lines: docs/source/faq.rst
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,9 +14,9 @@ working with linear operators is indeed that you don't really need to access the
14
14
of an operator.
15
15
16
16
17
-
**2. Can I have an older version of** ``cupy`` **or** ``cusignal`` **installed in my system (** ``cupy-cudaXX<8.1.0`` **or** ``cusignal>=0.16.0`` **)?**
17
+
**2. Can I have an older version of** ``cupy`` **installed in my system (** ``cupy-cudaXX<10.6.0``)?**
18
18
19
19
Yes. Nevertheless you need to tell PyLops that you don't want to use its ``cupy``
20
-
backend by setting the environment variable ``CUPY_PYLOPS=0`` or ``CUPY_SIGNAL=0``.
20
+
backend by setting the environment variable ``CUPY_PYLOPS=0``.
21
21
Failing to do so will lead to an error when you import ``pylops`` because some of the ``cupyx``
22
22
routines that we use are not available in earlier version of ``cupy``.
Copy file name to clipboardExpand all lines: docs/source/gpu.rst
+5-6Lines changed: 5 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,15 +5,14 @@ GPU Support
5
5
6
6
Overview
7
7
--------
8
-
From ``v1.12.0``, PyLops supports computations on GPUs powered by
9
-
`CuPy <https://cupy.dev/>`_ (``cupy-cudaXX>=8.1.0``) and `cuSignal <https://docs.rapids.ai/api/cusignal/stable/>`_ (``cusignal>=0.16.0``).
10
-
They must be installed *before* PyLops is installed.
8
+
PyLops supports computations on GPUs powered by `CuPy <https://cupy.dev/>`_ (``cupy-cudaXX>=10.6.0``).
9
+
This library must be installed *before* PyLops is installed.
11
10
12
11
.. note::
13
12
14
-
Set environment variables ``CUPY_PYLOPS=0`` and/or ``CUSIGNAL_PYLOPS=0`` to force PyLops to ignore
15
-
``cupy`` and ``cusignal`` backends.
16
-
This can be also used if a previous version of ``cupy`` or ``cusignal`` is installed in your system, otherwise you will get an error when importing PyLops.
13
+
Set environment variable ``CUPY_PYLOPS=0`` to force PyLops to ignore the ``cupy`` backend.
14
+
This can be also used if a previous (or faulty) version of ``cupy`` is installed in your system,
15
+
otherwise you will get an error when importing PyLops.
`cuSignal <https://docs.rapids.ai/api/cusignal/stable/>`_ is a library is used as a drop-in replacement to `SciPy Signal <https://docs.scipy.org/doc/scipy/reference/signal.html>`_ for
527
-
GPU-accelerated computations. Similar to CuPy, users must install
528
-
cuSignal prior to installing PyLops. To do so, follow their
0 commit comments