Skip to content

v0.1.0

Choose a tag to compare

@github-actions github-actions released this 10 Jun 19:41
2d7b76d

aleph v0.1 — the first public release of a high-performance quantum circuit simulator in Rust, with pluggable state-vector (SIMD + multi-threaded), MPS, and stabilizer backends, an OpenQASM 3.0 parser, an IR optimization pipeline, a CLI, and Python bindings.

Benchmarked against Qiskit Aer and Stim — full numbers and honest caveats in docs/perf/v0.1.md. Highlights: faster than single-thread Aer on QFT/Grover/QPE/VQE/QAOA at every measured size; within 2× of Stim on surface-code cycles at d=11 (241 qubits); 128-qubit shallow MPS circuits in ~10 ms.

Python

The package is aleph-sim (the module is import aleph). PyPI publication is planned; for v0.1 install the wheel for your platform from the assets below:

pip install <downloaded-wheel>   # Python >= 3.12
import aleph

c = aleph.Circuit(2)
c.h(0)
c.cx(0, 1)

result = aleph.run(c, shots=1024, seed=0)
print(result.counts())        # {'00': ~512, '11': ~512}
print(result.statevector())   # 4 amplitudes

Backends: sv (default, exact, ≤28 qubits), mps (low-entanglement, 100+ qubits), stab (Clifford-only). See the README for more.

Artifacts

asset platform notes
aleph_sim-0.1.0-…-manylinux_2_28_x86_64.whl Linux x86_64, glibc ≥ 2.28 (Ubuntu 20.04+/RHEL 8+) Python ≥ 3.12 (abi3)
aleph_sim-0.1.0-…-macosx_11_0_arm64.whl macOS arm64 (Apple Silicon) Python ≥ 3.12 (abi3)
aleph-v0.1.0-x86_64-unknown-linux-musl.tar.gz Linux x86_64, any distro (static musl) aleph CLI
aleph-v0.1.0-aarch64-apple-darwin.tar.gz macOS arm64 aleph CLI

All four artifacts verified in clean environments (Ubuntu 20.04 + macOS arm64): CLI --version, full 14-test binding suite, README quickstart.