Skip to content

Commit 0d75ff9

Browse files
authored
Merge pull request #26 from scaleway/iqm-integration
Update readme
2 parents 72eef66 + 7071cb2 commit 0d75ff9

3 files changed

Lines changed: 9 additions & 5 deletions

File tree

README.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
# Scaleway provider for Qiskit
22

3-
**Qiskit Scaleway** is a Python package to run quantum circuits on [Scaleway](https://www.scaleway.com/en/) infrastructure, providing access to [Aer](https://github.com/Qiskit/qiskit-aer) and [Qsim](https://github.com/quantumlib/qsim) simulators on powerful hardware (CPU and GPU).
3+
**Qiskit Scaleway** is a Python package to run quantum circuits on [Scaleway](https://www.scaleway.com/en/) infrastructure, providing access to:
4+
- [AQT](https://www.aqt.eu/) ion-trapped quantum computers
5+
- [IQM](https://meetiqm.com/) superconducting quantum computers
6+
- [Aer](https://github.com/Qiskit/qiskit-aer) state vector and tensor network multi-GPU emulators
7+
- [Qsim](https://github.com/quantumlib/qsim) NISQ emulators
48

59
To run circuits over [Quandela](https://www.quandela.com/) backends provided by Scaleway, you must use [Perceval SDK](https://perceval.quandela.net/) through the [Scaleway provider](https://perceval.quandela.net/docs/providers.html).
610

@@ -32,7 +36,7 @@ Alternatively, the Scaleway Provider can discover your access token from environ
3236

3337
```
3438
export QISKIT_SCALEWAY_PROJECT_ID="project_id"
35-
export QISKIT_SCALEWAY_API_TOKEN="token"
39+
export QISKIT_SCALEWAY_SECRET_KEY="token"
3640
```
3741

3842
Then you can instantiate the provider without any arguments:
@@ -57,7 +61,7 @@ backends = provider.backends(min_num_qubits=35)
5761
print(backends)
5862

5963
# Retrieve a backend by providing search criteria. The search must have a single match
60-
backend = provider.get_backend("aer_simulation_h100")
64+
backend = provider.get_backend("aer_simulation_h100") # Or any gate-based compatible QPU
6165
```
6266

6367
Define a quantum circuit and run it

qiskit_scaleway/utils/target.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
from qiskit.transpiler import Target
66
from qiskit.circuit.library import get_standard_gate_name_mapping
77

8-
from qiskit_scaleway.api import QaaSPlatform
8+
from scaleway_qaas_client import QaaSPlatform
99

1010

1111
@dataclass_json

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
setup(
2424
name="qiskit_scaleway",
25-
version="0.2.3",
25+
version="0.2.4",
2626
project_urls={
2727
"Documentation": "https://www.scaleway.com/en/quantum-as-a-service/",
2828
"Source": "https://github.com/scaleway/qiskit-scaleway",

0 commit comments

Comments
 (0)