Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 1 addition & 6 deletions azure-quantum/azure/quantum/target/rigetti/target.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 [
Expand All @@ -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:
Expand All @@ -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}")

Expand Down
1 change: 0 additions & 1 deletion samples/hello-world/HW-rigetti-qiskit.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -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)."
]
Expand Down
1 change: 0 additions & 1 deletion samples/hello-world/HW-rigetti-qsharp.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -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)."
]
Expand Down
Loading