Quantum circuit simulation using Vector and Tensor simulations
Note: Examples for using are provided in the examples/
folder. Examples include:
- Benchmarking how many qubits can we simulate using Vector and Tensor simulation
- Sampling the Qubits from a Quantum simulation
- Calculating the expectation values of
<Ψ| Op |Ψ>
Using uv (Installation)
- Create a virtual environment
uv venv .venv
- Activate the virtual environment
source .venv/bin/activate
- Install the dependencies
uv sync
uv pip install pandas # required in benchmark.py
- Create virtual environment
python3 -m venv .venv
- Activate the virtual environment
source .venv/bin/activate
- Install dependencies
pip install -e . # -e to develop while using