Skip to content

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

Google Cloud Marketplace

Pasqal Cloud is available through Google Cloud Marketplace (external) , providing seamless access to our neutral-atom QPUs. The Pay-as-you-go offer enables users to access Pasqal’s 100-qubit QPU with flexible, usage-based pricing integrated directly into their Google Cloud infrastructure.

This guide walks you through subscribing via Google Cloud Marketplace, creating your Pasqal account, and setting up a connection object in the SDK so you can submit jobs.

Follow these steps to subscribe to Pasqal via Google Cloud Marketplace, set up your account, and create a working connection object in the SDK.

Before subscribing to Pasqal Cloud via Google Cloud Marketplace, you will need:

  • A Google Account (you can create one during the process if you don’t have one)
  • 2-Factor Authentication (2FA) enabled on your Google Account (you’ll be prompted to set this up if not already enabled)
  • A valid payment method linked to your Google Cloud Billing account (required for pay-as-you-go)
Google Cloud Marketplace home page with Pasqal search
  1. Open Pasqal on Google Cloud Marketplace (external) .
  2. Alternatively, go to the Google Cloud Marketplace (external) , search for Pasqal, and select the official Pasqal offering from the results.
  3. Review the product details, including features (e.g. QPU access, emulators, optimization tools), pricing (usage-based), and terms.
Google sign-in page for Google Cloud Platform
  1. Sign in with your Google Account.
  2. If prompted, complete any required security steps, such as enabling 2FA. Why? Google Cloud requires 2FA for enhanced security during third-party integrations.
Google payment center add payment method page
  1. In the Google Cloud Console, navigate to Billing → Payment methods.
  2. Add or verify a valid payment method (e.g. credit card).
  3. Ensure your billing account is linked to the project where you’ll deploy Pasqal. Tip: Update compliance settings if needed for your organization. For billing details, see Google Cloud Billing docs (external) .
Pasqal Cloud product page on Google Cloud Marketplace
  1. On the Pasqal product page, click Subscribe.
  2. Review the subscription details:
    • Pricing: Pay-as-you-go based on quantum job usage (e.g. qubits, runtime). No flat fees — only charged for what you use.
    • Terms: Accept Pasqal’s Terms of Service and Privacy Policy.
  3. Click Subscribe to confirm and proceed.
Pasqal Cloud sign-up page

If you don’t already have a Pasqal Cloud account, you’ll be redirected to create one:

  1. If you don’t have a Pasqal account:
    • Enter your email (use the same as your Google Account for simplicity).
    • Set a secure password and provide any required details (e.g. organization info).
    • Agree to Pasqal’s Terms of Service and Privacy Policy.
    • Click Sign Up and verify your email.
  2. If you have an existing Pasqal account: click Log In.

Log into the Pasqal Cloud portal (external) , navigate to your project, and copy the Project ID. You will need this in the next step.

Pasqal Cloud dashboard showing the project ID

Step 7: Install the SDK and create your connection

Section titled “Step 7: Install the SDK and create your connection”

When accessing Pasqal through Google Cloud Marketplace, you authenticate using the standard PasqalCloud connection object. Your Project ID is available in the Pasqal Cloud portal (external) .

  1. Install

    Install the SDK via pip:

    Terminal window
    # install the Pasqal Cloud SDK
    pip install pasqal-cloud
  2. Authenticate

    from pulser_pasqal import PasqalCloud
    connection = PasqalCloud(
    username="your@email.com", # your Pasqal Cloud email
    password="YOUR_PASSWORD", # your Pasqal Cloud password
    project_id="YOUR_PROJECT_ID", # from portal.pasqal.cloud
    )
  3. Check available backends

    # list all backends available on your connection
    available = connection.fetch_available_devices()
    print(available) # -> {'EMU_FREE': ..., 'EMU_MPS': ..., 'FRESNEL': ...}

Step 8: Submit jobs using any Pasqal library

Section titled “Step 8: 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.


GCP usage is billed directly to your Google Cloud account. Monitor Pasqal charges separately from general GCP costs in the Google Cloud Console under Billing → Cost breakdown. You can set budgets and alerts for spending thresholds.

  • To cancel: manage subscriptions in Google Cloud Marketplace under Subscriptions.
  • Charges may take effect at the end of the billing cycle.
  • For support: contact Pasqal via the Cloud portal (external) .

Last updated: