Skip to content

Results are limited to the current section : Third-party Cloud Providers

Scaleway

Pasqal QPUs and emulators are available through Scaleway’s quantum computing platform. Authentication, billing, and job monitoring are managed within the Scaleway ecosystem.

Visit Scaleway quantum computing (external) and sign in to your Scaleway account, or create a new one.

Contact Scaleway support or Pasqal directly to activate access to Pasqal QPUs and emulators on your account. Early access is currently managed on request.

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.

Follow these steps to request access to Pasqal hardware via Scaleway, generate your credentials, and create a working connection in the SDK.

  1. Install

    Terminal window
    pip install pasqal-cloud # connection method TBC per Scaleway guide
  2. Authenticate

    # Scaleway connection - refer to Scaleway documentation
    # for the exact authentication method for your account
    connection = ScalewayQuantumClient(
    secret_key="YOUR_SCW_SECRET_KEY",
    project_id="YOUR_SCW_PROJECT_ID",
    )
  3. Check available backends

    # list available Pasqal backends on your connection
    available = 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.

Last updated: