Providers

Cold Atom Backend Provider

This module contains a provider to interface with cold atomic device backends. To access these devices, the user has to specify the url of the backend, a username and an access token. With these credentials, the provider can be accessed like this:

from qiskit_cold_atom.providers import ColdAtomProvider

# save account with personal credentials
ColdAtomProvider.save_account(url="my_url", username="my_name", token="my_url")

provider = ColdAtomProvider.load_account()
backends = provider.backends()

ColdAtomProvider([credentials])

Provider for cold atomic backends.

Cold Atom Jobs

When executing jobs, cold atom backends will return instances of ColdAtomJob.

ColdAtomJob(backend, job_id)

Class of jobs returned by cold atom backends.