From 01ee06f52268e89a696d800c73e9d380b9346f4f Mon Sep 17 00:00:00 2001 From: Jake Selig Date: Tue, 2 Dec 2025 12:41:21 -0700 Subject: [PATCH] fix: remove rigetti target Cepheus-1-36Q --- azure-quantum/azure/quantum/target/rigetti/target.py | 7 +------ samples/hello-world/HW-rigetti-qiskit.ipynb | 1 - samples/hello-world/HW-rigetti-qsharp.ipynb | 1 - 3 files changed, 1 insertion(+), 8 deletions(-) diff --git a/azure-quantum/azure/quantum/target/rigetti/target.py b/azure-quantum/azure/quantum/target/rigetti/target.py index 70435edf6..fb13e5dfa 100644 --- a/azure-quantum/azure/quantum/target/rigetti/target.py +++ b/azure-quantum/azure/quantum/target/rigetti/target.py @@ -32,8 +32,6 @@ class RigettiTarget(str, Enum): ANKAA_3 = "rigetti.qpu.ankaa-3" - CEPHEUS_1_36Q = "rigetti.qpu.cepheus-1-36q" - def simulators() -> List[str]: """Returns a list of simulator targets""" return [ @@ -43,8 +41,7 @@ def simulators() -> List[str]: def qpus() -> List[str]: """Returns a list of QPU targets""" return [ - RigettiTarget.ANKAA_3.value, - RigettiTarget.CEPHEUS_1_36Q + RigettiTarget.ANKAA_3.value ] def num_qubits(target_name) -> int: @@ -54,8 +51,6 @@ def num_qubits(target_name) -> int: return 20 elif target_name == RigettiTarget.ANKAA_3.value: return 84 - elif target_name == RigettiTarget.CEPHEUS_1_36Q.value: - return 36 else: raise ValueError(f"Unknown target {target_name}") diff --git a/samples/hello-world/HW-rigetti-qiskit.ipynb b/samples/hello-world/HW-rigetti-qiskit.ipynb index fe36e70a9..abc9483a4 100644 --- a/samples/hello-world/HW-rigetti-qiskit.ipynb +++ b/samples/hello-world/HW-rigetti-qiskit.ipynb @@ -135,7 +135,6 @@ "| --- | --- | --- | --- |\n", "| 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", "| Ankaa-3 (hardware) | `rigetti.qpu.ankaa-3` |84 qubits | A 4th-generation, square-lattice processor. Pricing based on QPUs. |\n", - "| Cepheus-1-36Q (hardware) | `rigetti.qpu.cepheus-1-36q` | 36 qubits | A multi-chip QPU of four 9-qubit chips tiled together. |\n", "\n", "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)." ] diff --git a/samples/hello-world/HW-rigetti-qsharp.ipynb b/samples/hello-world/HW-rigetti-qsharp.ipynb index 8f08adfd3..761a26541 100644 --- a/samples/hello-world/HW-rigetti-qsharp.ipynb +++ b/samples/hello-world/HW-rigetti-qsharp.ipynb @@ -129,7 +129,6 @@ "| --- | --- | --- | --- |\n", "| 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", "| Ankaa-3 (hardware) | `rigetti.qpu.ankaa-3` |84 qubits | A 4th-generation, square-lattice processor. Pricing based on QPUs. |\n", - "| Cepheus-1-36Q (hardware) | `rigetti.qpu.cepheus-1-36q` | 36 qubits | A multi-chip QPU of four 9-qubit chips tiled together. |\n", "\n", "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)." ]