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
94 changes: 69 additions & 25 deletions docs/guides/q-ctrl-performance-management.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@
},
{
"cell_type": "code",
"execution_count": 1,
"execution_count": null,
"id": "11af8fb4",
"metadata": {},
"outputs": [],
Expand Down Expand Up @@ -369,18 +369,40 @@
"- 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.\n",
"- ibm_brisbane\n",
"- ibm_brussels\n",
"- ibm_cleveland\n",
"- ibm_fez\n",
"- ibm_kawasaki\n",
"- ibm_nazca\n",
"- ibm_quebec\n",
"- ibm_rensselaer\n",
"- ibm_strasbourg\n",
"- ibm_torino\n",
"\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."
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
"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."
"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."

]
},
{
"cell_type": "code",
"execution_count": null,
"id": "4351fb76",
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"[<IBMBackend('ibm_fez')>,\n",
" <IBMBackend('ibm_brisbane')>,\n",
" <IBMBackend('ibm_pittsburgh')>,\n",
" <IBMBackend('ibm_kingston')>,\n",
" <IBMBackend('ibm_torino')>,\n",
" <IBMBackend('ibm_marrakesh')>]"
]
},
"execution_count": 4,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"service.backends()"
]
},
{
"cell_type": "markdown",
"id": "ac33dc25",
"metadata": {},
"source": [
"**Options:**\n",
"| Name | Type | Description | Default |\n",
"|--------|----------|-----------------------|---------------------|\n",
Expand Down Expand Up @@ -650,18 +672,40 @@
"- (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",
"- ibm_brisbane\n",
"- ibm_brussels\n",
"- ibm_cleveland\n",
"- ibm_fez\n",
"- ibm_kawasaki\n",
"- ibm_nazca\n",
"- ibm_quebec\n",
"- ibm_rensselaer\n",
"- ibm_strasbourg\n",
"- ibm_torino\n",
"\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."
]
},
{
"cell_type": "code",
"execution_count": 5,
"id": "5fa76d35",
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"[<IBMBackend('ibm_fez')>,\n",
" <IBMBackend('ibm_brisbane')>,\n",
" <IBMBackend('ibm_pittsburgh')>,\n",
" <IBMBackend('ibm_kingston')>,\n",
" <IBMBackend('ibm_torino')>,\n",
" <IBMBackend('ibm_marrakesh')>]"
]
},
"execution_count": 5,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"service.backends()"
]
},
{
"cell_type": "markdown",
"id": "ebe2895f",
"metadata": {},
"source": [
"**Options:**\n",
"| Name | Type | Description | Default |\n",
"|--------|----------|-----------------------|---------------------|\n",
Expand Down
Loading