Skip to content

Commit 01ee06f

Browse files
fix: remove rigetti target Cepheus-1-36Q
1 parent 55ecf54 commit 01ee06f

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
@@ -135,7 +135,6 @@
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",
139138
"\n",
140139
"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)."
141140
]

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,6 @@
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",
133132
"\n",
134133
"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)."
135134
]

0 commit comments

Comments
 (0)