> ## Documentation Index
> Fetch the complete documentation index at: https://nightly-mint.classiq.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Execution on IBM Quantum Cloud

The Classiq executor supports execution on IBM simulators and hardware.

## Usage

### Execution on IBM Simulators

<Tabs>
  <Tab title="SDK">
    [comment]: DO_NOT_TEST

    ```python  theme={null}
    from classiq import IBMBackendPreferences

    preferences = IBMBackendPreferences(backend_name="Name of requested quantum simulator")
    ```
  </Tab>

  <Tab title="IDE">
        <img src="https://mintcdn.com/nightlyclassiq/F3mw2CpGA-_Ubjlv/user-guide/resources/execution_ibm_simulation_login.png?fit=max&auto=format&n=F3mw2CpGA-_Ubjlv&q=85&s=0dea4f75a0f40bb9927b63b195878e51" alt="Opening info tab" width="599" height="423" data-path="user-guide/resources/execution_ibm_simulation_login.png" />
  </Tab>
</Tabs>

The supported simulators are fake hardware simulators.

### Execution on IBM Hardware

Execution on IBM hardware requires a valid IBM Quantum Cloud API access token, and access to the requested hardware with an IBM Quantum hub, group, and project name.
The access token is the API token that appears at the top of the [IBM Quantum Cloud page](https://quantum.cloud.ibm.com/), when you are logged in. You must create an account with IBM quantum if you do not have one already.

<Tabs>
  <Tab title="SDK">
    [comment]: DO_NOT_TEST

    ```python  theme={null}
    from classiq import (
        IBMBackendPreferences,
    )

    preferences = IBMBackendPreferences(
        backend_name="Name of requsted quantum hardware",
        access_token="A Valid API access token to IBM Quantum",
        channel="IBM Cloud Channel",
        instance_crn="IBM Cloud Instance CRN",
    )
    ```
  </Tab>

  <Tab title="IDE">
        <img src="https://mintcdn.com/nightlyclassiq/F3mw2CpGA-_Ubjlv/user-guide/resources/execution_ibm_hardware_login.png?fit=max&auto=format&n=F3mw2CpGA-_Ubjlv&q=85&s=319469bde4772bda55c441686a848982" alt="Opening info tab" width="886" height="1174" data-path="user-guide/resources/execution_ibm_hardware_login.png" />
  </Tab>
</Tabs>

## Supported Backends

Included hardware:

* "ibm\_kingston"
* "ibm\_boston"
* "ibm\_marrakesh"
* "ibm\_torino"
* "ibm\_fez"
* "ibm\_pittsburg"


Built with [Mintlify](https://mintlify.com).