Skip to content
Draft
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
6 changes: 4 additions & 2 deletions docs/tutorials/hello-world.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -195,12 +195,12 @@
"\n",
"When executing circuits on a device, it is important to optimize the set of instructions that the circuit contains and minimize the overall depth (roughly the number of instructions) of the circuit. This ensures that you obtain the best results possible by reducing the effects of error and noise. Additionally, the circuit's instructions must conform to a backend device's [Instruction Set Architecture (ISA)](/docs/guides/transpile#instruction-set-architecture) and must consider the device's basis gates and qubit connectivity.\n",
"\n",
"The following code instantiates a real device to submit a job to and transforms the circuit and observables to match that backend's ISA. It requires that you have already [saved your credentials](/docs/guides/cloud-setup)"
"The following code instantiates a real device to submit a job to and transforms the circuit and observables to match that backend's ISA. It requires that you have already [saved your credentials.](/docs/guides/cloud-setup)"
]
},
{
"cell_type": "code",
"execution_count": 3,
"execution_count": null,
"id": "9a901271",
"metadata": {},
"outputs": [
Expand All @@ -217,6 +217,8 @@
],
"source": [
"from qiskit_ibm_runtime import QiskitRuntimeService\n",
"# If you haven't already, include the following import:\n",
"# from qiskit.transpiler.preset_passmanagers import generate_preset_pass_manager\n",
"\n",
"service = QiskitRuntimeService()\n",
"\n",
Expand Down
Loading