Skip to content

API designed to leverage the power of quantum computing for a variety of advanced computational tasks

Notifications You must be signed in to change notification settings

opendev-labs/Quantum-Compute

Repository files navigation

Quantum-Compute

License Python Status

The foundational computational engine for quantum simulation, built by opendev-labs.

🚀 Overview

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.

✨ Key Features

  • 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.

🛠️ Installation

python setup.py install

💻 Usage

from 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}

🤝 Contributing

Contributions are welcome. Please ensure tests pass before submitting a PR.

📄 License

This project is licensed under the MIT License - see the LICENSE file for details.


Copyright © 2026 opendev-labs

About

API designed to leverage the power of quantum computing for a variety of advanced computational tasks

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages