Skip to content

Commit dbfaa2a

Browse files
committed
Change backend to least_busy
1 parent 17ecc71 commit dbfaa2a

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

docs/guides/build-noise-models.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,15 +103,15 @@
103103
},
104104
{
105105
"cell_type": "code",
106-
"execution_count": 2,
106+
"execution_count": null,
107107
"id": "3c114909-aa2a-4638-b945-e31dcdbaf248",
108108
"metadata": {},
109109
"outputs": [],
110110
"source": [
111111
"from qiskit_ibm_runtime import QiskitRuntimeService\n",
112112
"\n",
113113
"service = QiskitRuntimeService()\n",
114-
"backend = service.backend(\"ibm_brisbane\")\n",
114+
"backend = service.least_busy()\n",
115115
"noise_model = NoiseModel.from_backend(backend)"
116116
]
117117
},

docs/guides/dynamical-decoupling-pass-manager.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,15 +46,15 @@
4646
},
4747
{
4848
"cell_type": "code",
49-
"execution_count": 1,
49+
"execution_count": null,
5050
"id": "368cab01-8eb0-4feb-a5d1-269d225af7af",
5151
"metadata": {},
5252
"outputs": [],
5353
"source": [
5454
"from qiskit_ibm_runtime import QiskitRuntimeService\n",
5555
"\n",
5656
"service = QiskitRuntimeService()\n",
57-
"backend = service.backend(\"ibm_brisbane\")\n",
57+
"backend = service.least_busy()\n",
5858
"\n",
5959
"target = backend.target\n",
6060
"basis_gates = list(target.operation_names)"

0 commit comments

Comments
 (0)