diff --git a/docs/sphinx/using/backends/cloud/scaleway.rst b/docs/sphinx/using/backends/cloud/scaleway.rst index 6e4934e04a5..687e69464af 100644 --- a/docs/sphinx/using/backends/cloud/scaleway.rst +++ b/docs/sphinx/using/backends/cloud/scaleway.rst @@ -133,3 +133,6 @@ or do it by calling the Scaleway's QaaS API: # Terminate the session curl -X POST -H "X-Auth-Token: $SCW_SECRET_KEY" -H "Content-Type: application/json" "https://api.scaleway.com/qaas/v1alpha1/sessions/{session_id}/terminate" + + +To see a complete example, take a look at :ref:`Scaleway QaaS examples `. diff --git a/docs/sphinx/using/backends/hardware.rst b/docs/sphinx/using/backends/hardware.rst index d64651da2a1..5005cc97ab3 100644 --- a/docs/sphinx/using/backends/hardware.rst +++ b/docs/sphinx/using/backends/hardware.rst @@ -16,3 +16,9 @@ To submit to a hardware backend, you need an account with the respective provide Neutral Atom QPUs Photonic QPUs Quantum Control Systems + +- :doc:`Cloud ` + + - :doc:`Amazon Braket ` + + - :doc:`Scaleway QaaS ` diff --git a/docs/sphinx/using/backends/hardware/superconducting.rst b/docs/sphinx/using/backends/hardware/superconducting.rst index a4f48d501d1..f48affcddd4 100644 --- a/docs/sphinx/using/backends/hardware/superconducting.rst +++ b/docs/sphinx/using/backends/hardware/superconducting.rst @@ -520,15 +520,6 @@ Submitting To see a complete example of using Quantum Circuits' backends, please take a look at the :ref:`Quantum Circuits examples `. -.. note:: - - In local emulation mode (``emulate`` flag set to ``True``), the program will be executed on the :ref:`default simulator `. - The environment variable ``CUDAQ_DEFAULT_SIMULATOR`` can be used to change the emulation simulator. - - For example, the simulation floating point accuracy and/or the simulation capabilities (e.g., maximum number of qubits, supported quantum gates), - depend on the selected simulator. - - Any environment variables must be set prior to setting the target or running "`import cudaq`". TII +++ @@ -596,3 +587,16 @@ Submitting jobs nvq++ --target tii --tii-device tii-sim --tii-project personal main.cpp -o main.x The ``TII_API_TOKEN`` environment variable must be set at runtime to authenticate the job. + +To see a complete example of using TII's backends, please take a look at the :ref:`TII examples `. + + +.. note:: + + In local emulation mode (``emulate`` flag set to ``True``), the program will be executed on the :ref:`default simulator `. + The environment variable ``CUDAQ_DEFAULT_SIMULATOR`` can be used to change the emulation simulator. + + For example, the simulation floating point accuracy and/or the simulation capabilities (e.g., maximum number of qubits, supported quantum gates), + depend on the selected simulator. + + Any environment variables must be set prior to setting the target or running `import cudaq`.