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 typos, add missing aer_simulator config docs #1829

Closed
wants to merge 4 commits into from
Closed
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
12 changes: 10 additions & 2 deletions qiskit_aer/backends/aer_simulator.py
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,6 @@ class AerSimulator(AerBackend):
qubits which do not affect the simulation outcome from the simulated
circuits (Default: True).


* ``zero_threshold`` (double): Sets the threshold for truncating
small values to zero in the result data (Default: 1e-10).

Expand Down Expand Up @@ -288,6 +287,8 @@ class AerSimulator(AerBackend):
threads per GPU. This parameter is used to optimize Pauli noise
simulation with multiple-GPUs (Default: 1).

* ``accept_distributed_results`` (bool)

These backend options only apply when using the ``"statevector"``
simulation method:

Expand All @@ -309,7 +310,7 @@ class AerSimulator(AerBackend):

* ``stabilizer_max_snapshot_probabilities`` (int): set the maximum
qubit number for the
`~qiskit_aer.extensions.SnapshotProbabilities`
`qiskit_aer.extensions.SnapshotProbabilities`
instruction (Default: 32).

These backend options only apply when using the ``"extended_stabilizer"``
Expand Down Expand Up @@ -407,6 +408,13 @@ class AerSimulator(AerBackend):
Possible values are "mps_swap_right" and "mps_swap_left".
(Default: "mps_swap_left")

* ``chop_threshold`` (float): Threshold for truncating snapshots
(Default: 1e-8)

* ``mps_parallel_threshold`` (int): (Default: 14)

* ``mps_omp_threads`` (int): (Default: 1)

These backend options only apply when using the ``tensor_network``
simulation method:

Expand Down