Skip to content

Commit f385008

Browse files
authored
Add Rigetti Cepheus-1-36Q target (#679)
1 parent 57cf7aa commit f385008

3 files changed

Lines changed: 7 additions & 0 deletions

File tree

azure-quantum/azure/quantum/target/rigetti/target.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,8 @@ class RigettiTarget(str, Enum):
3232

3333
ANKAA_3 = "rigetti.qpu.ankaa-3"
3434

35+
CEPHEUS_1_36Q = "rigetti.qpu.cepheus-1-36q"
36+
3537
def simulators() -> List[str]:
3638
"""Returns a list of simulator targets"""
3739
return [
@@ -42,6 +44,7 @@ def qpus() -> List[str]:
4244
"""Returns a list of QPU targets"""
4345
return [
4446
RigettiTarget.ANKAA_3.value,
47+
RigettiTarget.CEPHEUS_1_36Q
4548
]
4649

4750
def num_qubits(target_name) -> int:
@@ -51,6 +54,8 @@ def num_qubits(target_name) -> int:
5154
return 20
5255
elif target_name == RigettiTarget.ANKAA_3.value:
5356
return 84
57+
elif target_name == RigettiTarget.CEPHEUS_1_36Q.value:
58+
return 36
5459
else:
5560
raise ValueError(f"Unknown target {target_name}")
5661

samples/hello-world/HW-rigetti-qiskit.ipynb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -135,6 +135,7 @@
135135
"| --- | --- | --- | --- |\n",
136136
"| Rigetti QVM (simulator) | `rigetti.sim.qvm` | 20 qubits | Rigetti's cloud-based, [open-source](https://github.com/quil-lang/qvm) \"Quantum Virtual Machine\" simulator. Free to use. |\n",
137137
"| Ankaa-3 (hardware) | `rigetti.qpu.ankaa-3` |84 qubits | A 4th-generation, square-lattice processor. Pricing based on QPUs. |\n",
138+
"| Cepheus-1-36Q (hardware) | `rigetti.qpu.cepheus-1-36q` | 36 qubits | A multi-chip QPU of four 9-qubit chips tiled together. |\n",
138139
"\n",
139140
"For this example, we will use `rigetti.sim.qvm`. To learn more about Rigetti's targets, check out [Rigetti's Azure Quantum documentation](https://learn.microsoft.com/azure/quantum/provider-rigetti)."
140141
]

samples/hello-world/HW-rigetti-qsharp.ipynb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -129,6 +129,7 @@
129129
"| --- | --- | --- | --- |\n",
130130
"| Rigetti QVM (simulator) | `rigetti.sim.qvm` | 20 qubits | Rigetti's cloud-based, [open-source](https://github.com/quil-lang/qvm) \"Quantum Virtual Machine\" simulator. Free to use. |\n",
131131
"| Ankaa-3 (hardware) | `rigetti.qpu.ankaa-3` |84 qubits | A 4th-generation, square-lattice processor. Pricing based on QPUs. |\n",
132+
"| Cepheus-1-36Q (hardware) | `rigetti.qpu.cepheus-1-36q` | 36 qubits | A multi-chip QPU of four 9-qubit chips tiled together. |\n",
132133
"\n",
133134
"For this example, we will use `rigetti.sim.qvm`. To learn more about Rigetti's targets, check out [Rigetti's Azure Quantum documentation](https://learn.microsoft.com/azure/quantum/provider-rigetti)."
134135
]

0 commit comments

Comments
 (0)