Skip to content

Commit

Permalink
specify shots format
Browse files Browse the repository at this point in the history
  • Loading branch information
rowenwu committed Oct 16, 2024
1 parent 34526f1 commit 7fc521d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/guides/q-ctrl-performance-management.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
"\n",
"![Visualization of the error suppression pipeline](/images/guides/qctrl-performance-management/error_suppression.svg)\n",
"\n",
"The function offers two primitives, Sampler and Estimator, and the inputs and outputs of both follow the implemented spec for [Qiskit Runtime V2 primitives](../guides/primitive-input-output), which provides detailed interface information."
"The function offers two primitives, Sampler and Estimator, and the inputs and outputs of both extend the implemented spec for [Qiskit Runtime V2 primitives](/guides/primitive-input-output)."
]
},
{
Expand Down Expand Up @@ -330,7 +330,7 @@
"- One or more observables that specify the expectation values to estimate, in any of the formats denoted in the list \"Supported observables formats\".\n",
"- (Optional) A collection of parameter values to bind the circuit against, which follow the same [array broadcasting rules](./primitive-input-output#broadcasting-rules) as the `QiskitRuntime` primitives.\n",
"- (Optional) A target precision for expectation values to estimate.\n",
"- (Optional) A real number representing the precision, or a dictionary of run options, such as the shot count.\n",
"- (Optional) A real number representing the precision, or a dictionary of run options containing the shot count. For example: `{\"shots\": <int>}`. \n",
"\n",
"**Supported observables formats:**\n",
"- Any one of the `ObservablesArrayLike` formats, such as `Pauli`, `SparsePauliOp`, `PauliList`, or `str`\n",
Expand Down Expand Up @@ -616,7 +616,7 @@
"**`QctrlSamplerPubLike` components (derived from the [Qiskit Runtime PUB definition]((/guides/primitive-input-output#sampler-pub))):**\n",
"- A single circuit defined as a `QuantumCircuit` or in OpenQASM 2.0 or 3.0 string format.\n",
"- (Optional) A collection of parameter values to bind the circuit against.\n",
"- (Optional) An integer representing the shot count, or a dictionary of runtime options, such as the shot count\n",
"- (Optional) An integer representing the shot count, or a dictionary of runtime options containing the shot count. For example: `(circ, None, 123)` or `(circ, None, {\"shots\": 123})`.\n",
"\n",
"**Supported backends:**\n",
"The following list of backends are currently supported. If your device is not listed, [reach out to Q-CTRL](https://form.typeform.com/to/iuujEAEI?typeform-source=q-ctrl.com) to add support.\n",
Expand Down

0 comments on commit 7fc521d

Please sign in to comment.