Skip to content

IBM

IBM offers a variety of quantum simulators that emulate the behavior of real gate-based quantum computers using classical hardware. With Luna, you can seamlessly access these IBM simulators — available under both free and paid plans — to test and develop quantum algorithms before running them on actual quantum hardware.

Running on Luna Servers

This simulated backend runs on Luna servers.

Initialization

Python
from luna_quantum.solve.parameters.backends.ibm import (
    AerSimulator
)

backend = AerSimulator(
    backend=AerSimulator.SimulatorBackend(
        backend_type='simulator',
        backend_name='aer'
    )
)

Usage

Python
from luna_quantum.backends import AerSimulator

backend = AerSimulator()