Skip to content

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

OVHcloud

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

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

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

Once access is granted, generate API credentials from the OVHCloud console. Note your API key and project ID, you will need these to authenticate.

  1. Install

    Install the required packages to connect and submit jobs:

    Terminal window
    pip install pasqal-cloud pulser-core
  2. Create your connection

    Authenticate using your OVHCloud credentials. The exact connection method may differ — refer to your OVHCloud onboarding documentation for the definitive version.

    # OVHcloud connection - confirm exact method with OVHcloud docs
    connection = OVHQuantumClient(
    api_key="YOUR_OVH_API_KEY",
    project_id="YOUR_OVH_PROJECT_ID",
    )
  3. Check available backends

    Confirm your connection is working by listing the available Pasqal targets in your workspace:

    # confirm connection and list available backends
    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: