Qumat Quickstart
Installation
Install Qumat using pip:
pip install qumat
Basic Usage
from qumat import QumatCircuit
# Create a simple quantum circuit
circuit = QumatCircuit(2)
circuit.h(0) # Hadamard gate on qubit 0
circuit.cx(0, 1) # CNOT gate
# Run the circuit
result = circuit.run()
print(result)
Next Steps
Legacy Mahout MapReduce
note
The legacy Mahout MapReduce functionality is deprecated. For current quantum computing features, see the Qumat documentation.