Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix wrong parameters in docs for Fermioniq backend #2367

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions docs/sphinx/using/backends/simulators.rst
Original file line number Diff line number Diff line change
Expand Up @@ -515,7 +515,7 @@ compute expectation values of observables.
.. code:: python

cudaq.set_target("fermioniq", **{
"remote-config": remote_config_id
"remote_config": remote_config_id
})

For a comprehensive list of all remote configurations, please contact Fermioniq directly.
Expand All @@ -526,15 +526,15 @@ compute expectation values of observables.
.. code:: python

cudaq.set_target("fermioniq", **{
"project-id": project_id
"project_id": project_id
})

To specify the bond dimension, you can pass the ``fermioniq-bond-dim`` parameter.
To specify the bond dimension, you can pass the ``bond_dim`` parameter.

.. code:: python

cudaq.set_target("fermioniq", **{
"bond-dim": 5
"bond_dim": 5
})

.. tab:: C++
Expand Down
Loading