Skip to content

Commit

Permalink
update 23 qubits to 25 (#642)
Browse files Browse the repository at this point in the history
* update 23 qubits to 25

* update test to 25 qubits
  • Loading branch information
splch authored Oct 1, 2024
1 parent a391158 commit e25d185
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion azure-quantum/azure/quantum/qiskit/backends/ionq.py
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ def __init__(self, name: str, provider: "AzureQuantumProvider", **kwargs):
"description": "IonQ Aria QPU on Azure Quantum",
"basis_gates": self._basis_gates(),
"memory": False,
"n_qubits": 23,
"n_qubits": 25,
"conditional": False,
"max_shots": 10000,
"max_experiments": 1,
Expand Down
2 changes: 1 addition & 1 deletion azure-quantum/tests/unit/test_qiskit.py
Original file line number Diff line number Diff line change
Expand Up @@ -878,7 +878,7 @@ def test_qiskit_get_ionq_qpu_target(self):
config = backend.configuration()
self.assertFalse(config.simulator)
self.assertEqual(1, config.max_experiments)
self.assertEqual(23, config.num_qubits)
self.assertEqual(25, config.num_qubits)
self.assertEqual("qir.v1", config.azure["content_type"])
self.assertEqual("ionq", config.azure["provider_id"])
self.assertEqual("qir.v1", config.azure["input_data_format"])
Expand Down

0 comments on commit e25d185

Please sign in to comment.