A quantum information research toolkit based on Qiskit, designed to facilitate research and development in quantum information science.
-
Install QIRT using pip:
pip install QIRT
-
Set up Jupyter Notebook (if not already installed):
pip install jupyter jupyter notebook
Create a new notebook and run the following:
from QIRT import QuantumState, QuantumCircuit
# Create a quantum state
state = QuantumState.from_label('00')
# Visualize the state
state.draw()
# Create a quantum circuit
circuit = QuantumCircuit(2)
circuit.h(0) # Apply Hadamard gate to the first qubit
circuit.cx(0, 1) # Apply CNOT gate
# Apply circuit to state
final_state = state.apply(circuit)
final_state.draw()
For detailed documentation, tutorials, and how-to guides, visit our documentation website.
- Tutorials: Learn the basics of QIRT with hands-on examples.
- How-To Guides: Detailed instructions for specific tasks.
- API Reference: Detailed descriptions of QIRT functions, classes, and modules.
- Python >= 3.10
- qiskit[visualization] >= 1.1.0
- IPython >= 8.24.0
- Jupyter Notebook (for visualization)
QIRT can be configured using ~/.QIRT/config.ini
. See the documentation for more details.
This project is open source under the MIT license. Note that separately installed extensions are not part of the QIRT project and have their own licenses.
If you encounter any issues or have questions, please open an issue on our GitHub repository.