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: doc/source/api-reference/qibo.rst
+6-2
Original file line number
Diff line number
Diff line change
@@ -2375,7 +2375,7 @@ The user can switch backends using
2375
2375
qibo.set_backend("numpy")
2376
2376
2377
2377
before creating any circuits or gates. The default backend is the first available
2378
-
from ``qibojit``, ``tensorflow``, ``numpy``.
2378
+
from ``qibojit``, ``pytorch``, ``tensorflow``, ``numpy``.
2379
2379
2380
2380
Some backends support different platforms. For example, the qibojit backend
2381
2381
provides two platforms (``cupy`` and ``cuquantum``) when used on GPU.
@@ -2456,4 +2456,8 @@ Alternatively, a Clifford circuit can also be executed starting from the :class:
2456
2456
Cloud Backends
2457
2457
^^^^^^^^^^^^^^
2458
2458
2459
-
Additional backends, that support the remote execution of quantum circuits through cloud service providers, such as IBM and QRC-TII, are provided by the optional qibo plugin `qibo-cloud-backends <https://github.com/qiboteam/qibo-cloud-backends>`_. For more information please refer to the `official documentation <https://qibo.science/qibo-cloud-backends/stable/>`_.
2459
+
Additional backends that support the remote execution of quantum circuits through
2460
+
cloud service providers, such as IBM and QRC-TII, are provided by the optional qibo plugin
Copy file name to clipboardexpand all lines: doc/source/getting-started/backends.rst
+1-1
Original file line number
Diff line number
Diff line change
@@ -36,10 +36,10 @@ if the corresponding packages are installed, following the hierarchy below:
36
36
37
37
* :ref:`installing-numpy`: a lightweight quantum simulator shipped with the :ref:`installing-qibo` base package. Use this simulator if your CPU architecture is not supported by the other backends. Please note that the simulation performance is quite poor in comparison to other backends.
38
38
* :ref:`installing-qibojit`: an efficient simulation backend for CPU, GPU and multi-GPU based on just-in-time (JIT) compiled custom operators. Install this package if you need to simulate quantum circuits with large number of qubits or complex quantum algorithms which may benefit from computing parallelism.
39
-
* `qibotn <https://qibo.science/qibotn/stable/>`_: an interface to Tensor Networks simulation algorithms designed for GPUs and multi-node CPUs. This backend makes possible scaling quantum circuit simulation to a larger number of qubits.
40
39
* :ref:`installing-tensorflow`: a pure TensorFlow implementation for quantum simulation which provides access to gradient descent optimization and the possibility to implement classical and quantum architectures together. This backend is not optimized for memory and speed, use :ref:`installing-qibojit` instead.
41
40
* :ref:`installing-pytorch`: a pure PyTorch implementation for quantum simulation which provides access to gradient descent optimization and the possibility to implement classical and quantum architectures together. This backend is not optimized for memory and speed, use :ref:`installing-qibojit` instead.
42
41
* :ref:`clifford <Clifford>`: a specialized backend for the simulation of quantum circuits with Clifford gates. This backend uses :ref:`installing-qibojit` and/or :ref:`installing-numpy`.
42
+
* `qibotn <https://qibo.science/qibotn/stable/>`_: an interface to Tensor Networks simulation algorithms designed for GPUs and multi-node CPUs. This backend makes possible scaling quantum circuit simulation to a larger number of qubits.
43
43
44
44
The default backend that is used is the first available from the above list.
45
45
The user can switch to a different using the ``qibo.set_backend`` method
0 commit comments