Scaleway
Pasqal QPUs and emulators are available through Scaleway’s quantum computing platform. Authentication, billing, and job monitoring are managed within the Scaleway ecosystem.
Available backends
Section titled “Available backends”Create an account and connection
Section titled “Create an account and connection”Step 1: Access Scaleway quantum computing
Section titled “Step 1: Access Scaleway quantum computing”Visit Scaleway quantum computing (external) and sign in to your Scaleway account, or create a new one.
Step 2: Request access to Pasqal hardware
Section titled “Step 2: Request access to Pasqal hardware”Contact Scaleway support or Pasqal directly to activate access to Pasqal QPUs and emulators on your account. Early access is currently managed on request.
Step 3: Generate your API credentials
Section titled “Step 3: Generate your API credentials”From the Scaleway console, go to IAM → API Keys and generate a new secret key. Note your secret key and Project ID — you will need both to authenticate.
Step 4: Create your connection
Section titled “Step 4: Create your connection”Follow these steps to request access to Pasqal hardware via Scaleway, generate your credentials, and create a working connection in the SDK.
-
Install
Terminal window pip install pasqal-cloud # connection method TBC per Scaleway guide -
Authenticate
# Scaleway connection - refer to Scaleway documentation# for the exact authentication method for your accountconnection = ScalewayQuantumClient(secret_key="YOUR_SCW_SECRET_KEY",project_id="YOUR_SCW_PROJECT_ID",) -
Check available backends
# list available Pasqal backends on your connectionavailable = connection.fetch_available_devices()print(available)
Step 5: Submit jobs using any Pasqal library
Section titled “Step 5: Submit jobs using any Pasqal library”Your connection object works with all Pasqal libraries: QoolQit, Pulser, QUBO Solver, MIS, and QEK. You pass it the same way regardless of which library you use.
