Skip to content

Commit ea70da6

Browse files
fix: remove rigetti target Cepheus-1-36Q
1 parent 0df2ac7 commit ea70da6

File tree

3 files changed

+1
-8
lines changed

3 files changed

+1
-8
lines changed

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

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

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

35-
CEPHEUS_1_36Q = "rigetti.qpu.cepheus-1-36q"
36-
3735
def simulators() -> List[str]:
3836
"""Returns a list of simulator targets"""
3937
return [
@@ -43,8 +41,7 @@ def simulators() -> List[str]:
4341
def qpus() -> List[str]:
4442
"""Returns a list of QPU targets"""
4543
return [
46-
RigettiTarget.ANKAA_3.value,
47-
RigettiTarget.CEPHEUS_1_36Q
44+
RigettiTarget.ANKAA_3.value
4845
]
4946

5047
def num_qubits(target_name) -> int:
@@ -54,8 +51,6 @@ def num_qubits(target_name) -> int:
5451
return 20
5552
elif target_name == RigettiTarget.ANKAA_3.value:
5653
return 84
57-
elif target_name == RigettiTarget.CEPHEUS_1_36Q.value:
58-
return 36
5954
else:
6055
raise ValueError(f"Unknown target {target_name}")
6156

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,6 @@
132132
"| --- | --- | --- | --- |\n",
133133
"| 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",
134134
"| Ankaa-3 (hardware) | `rigetti.qpu.ankaa-3` |84 qubits | A 4th-generation, square-lattice processor. Pricing based on QPUs. |\n",
135-
"| Cepheus-1-36Q (hardware) | `rigetti.qpu.cepheus-1-36q` | 36 qubits | A multi-chip QPU of four 9-qubit chips tiled together. |\n",
136135
"\n",
137136
"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)."
138137
]

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,6 @@
126126
"| --- | --- | --- | --- |\n",
127127
"| 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",
128128
"| Ankaa-3 (hardware) | `rigetti.qpu.ankaa-3` |84 qubits | A 4th-generation, square-lattice processor. Pricing based on QPUs. |\n",
129-
"| Cepheus-1-36Q (hardware) | `rigetti.qpu.cepheus-1-36q` | 36 qubits | A multi-chip QPU of four 9-qubit chips tiled together. |\n",
130129
"\n",
131130
"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)."
132131
]

0 commit comments

Comments
 (0)