Open-source SDK for neutral atom quantum computing

Define, build and run quantum programs.

pip install bloqade
bell_state.py
from bloqade import squin

@squin.kernel
def bell_state():
    qubits = squin.qalloc(2)
    squin.sqrt_y(qubits[0])
    squin.cx(qubits[0], qubits[1])
    squin.broadcast.measure(qubits)

Find the components that match your needs.

Run experiments targeting QuEra systems.

Simulate quantum circuits modelling our hardware.

Design hardware-aware codes, decoders, and architectures.

Build quantum dialects, compilers, and virtual machines.

Help in making quantum computers useful.

If you love compilers, simulators, or quantum systems, your contributions can push the whole field forward.