Skip to content
Merged
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
24 changes: 18 additions & 6 deletions docs/guides/q-ctrl-performance-management.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -398,13 +398,13 @@
"- A nested list of Pauli strings: `[[\"XY\", \"YZ\"], [\"ZX\", \"XX\"]]`\n",
"- A nested list of Pauli strings with coefficients: `[[(\"XY\", 0.1), (\"YZ\", 0.2)], [(\"ZX\", 0.3), (\"XX\", 0.4)]]`\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."
"**Backends you can access:**\n",
"Run the following code to see the list of backends that you have access to. 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."
]
},
{
"cell_type": "code",
"execution_count": 10,
"execution_count": null,
"id": "4351fb76",
"metadata": {},
"outputs": [
Expand All @@ -426,6 +426,12 @@
}
],
"source": [
"# The output list of backends is an example for the purpose\n",
"# of this guide only, and might not match the list you see\n",
"# when you run the following code.\n",
"from qiskit_ibm_runtime import QiskitRuntimeService\n",
"\n",
"service = QiskitRuntimeService()\n",
"service.backends()"
]
},
Expand Down Expand Up @@ -704,13 +710,13 @@
"- (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 containing the shot count. For example: `(circ, None, 123)` or `(circ, None, {\"shots\": 123})`.\n",
"\n",
"**Supported backends:**\n",
"Run the following code to see the list of backends that 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."
"**Backends you can access:**\n",
"Run the following code to see the list of backends that you have access to. 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."
]
},
{
"cell_type": "code",
"execution_count": 18,
"execution_count": null,
"id": "5fa76d35",
"metadata": {},
"outputs": [
Expand All @@ -732,6 +738,12 @@
}
],
"source": [
"# The output list of backends is an example for the purpose\n",
"# of this guide only, and might not match the list you see\n",
"# when you run the following code.\n",
"from qiskit_ibm_runtime import QiskitRuntimeService\n",
"\n",
"service = QiskitRuntimeService()\n",
"service.backends()"
]
},
Expand Down
Loading