Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jmiszczak/nisq-qprog-tutorial
Some tests with QAOA, VQE, annealers and other procedures for NISQ quantum computers
https://github.com/jmiszczak/nisq-qprog-tutorial
nisq qaoa quantum-algorithms quantum-annealing quantum-computing vqe
Last synced: 7 days ago
JSON representation
Some tests with QAOA, VQE, annealers and other procedures for NISQ quantum computers
- Host: GitHub
- URL: https://github.com/jmiszczak/nisq-qprog-tutorial
- Owner: jmiszczak
- License: unlicense
- Created: 2021-02-10T11:32:05.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2024-12-28T12:40:06.000Z (27 days ago)
- Last Synced: 2024-12-28T13:28:40.097Z (27 days ago)
- Topics: nisq, qaoa, quantum-algorithms, quantum-annealing, quantum-computing, vqe
- Language: Mathematica
- Homepage: https://miszczak.eu/grants/qprogmods/
- Size: 7.26 MB
- Stars: 5
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# nisq-qprog-tutorial
Some tests with QAOA, VQE, annealers and other procedures for NISQ quantum computers.## Managing environements
File `nisq-qprog-tutorial.yml` contains definition of virtual environement for Anacoda. To create new enviroment run
conda env create -f nisq-qprog-tutorial.yml
To updated existing environement run
conda env update -f nisq-qprog-tutorial.yml --prune
Option `--prune` results in the removal of the unneeded dependencies.## Managing Anaconda installation
Some useful commands for managing Anaconda environements.
Cleaning unused packages:
conda clean --all -y
Updating environement:conda update -n nisq-qprog-tutorial --all -y