The foundational computational engine for quantum simulation, built by opendev-labs.
Quantum-Compute provides the improved primitives and backend logic for simulating quantum circuits. It serves as the computational engine powering the higher-level libraries in the opendev-labs ecosystem.
- State Vector Simulation: Precision simulation of qubit states.
- Optimized Gates: Efficient implementations of standard quantum gates (Hadamard, CNOT, Pauli, etc.).
- Circuit Composition: Flexible tools for building complex quantum circuits.
- Extensible Backends: Interface for plugging in hardware provider SDKs.
python setup.py installfrom quantum_compute import QuantumCircuit, Simulator
# Create a Bell State
qc = QuantumCircuit(2)
qc.h(0)
qc.cx(0, 1)
# Simulate
sim = Simulator()
result = sim.run(qc, shots=1000)
print(result.counts)
# Output: {'00': 502, '11': 498}Contributions are welcome. Please ensure tests pass before submitting a PR.
This project is licensed under the MIT License - see the LICENSE file for details.
Copyright © 2026 opendev-labs