Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/justincpresley/ibm-quantum
An archive repository that holds all protocols learned in the Intro to Quantum Computing course (CSC-5903) at TTU.
https://github.com/justincpresley/ibm-quantum
ibm ibm-quantum-computer ipython-notebook jupy jupyter-notebook protocol qds quantum quantum-algorithms quantum-computing quantum-mechanics quantum-otp quantum-security quantum-teleportation
Last synced: 3 months ago
JSON representation
An archive repository that holds all protocols learned in the Intro to Quantum Computing course (CSC-5903) at TTU.
- Host: GitHub
- URL: https://github.com/justincpresley/ibm-quantum
- Owner: justincpresley
- License: lgpl-2.1
- Archived: true
- Created: 2022-04-07T21:50:31.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2022-04-30T06:33:36.000Z (over 2 years ago)
- Last Synced: 2024-09-24T21:32:57.636Z (3 months ago)
- Topics: ibm, ibm-quantum-computer, ipython-notebook, jupy, jupyter-notebook, protocol, qds, quantum, quantum-algorithms, quantum-computing, quantum-mechanics, quantum-otp, quantum-security, quantum-teleportation
- Language: Jupyter Notebook
- Homepage:
- Size: 412 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ibm-quantum - A wide-variety of important protocols runnable in the IBM Quantum Lab
This repository was the center for storing all projects relating to the course **Intro to Quantum Computing**, CSC 5903. This course was taken during my second senior semester.
The protocols that I worked on are seen below. While only a few build on others, each protocol below get more complex in terms of general quantum computing knowledge. Click on the name for the notebook and specification for how its implemented. Some of the following specifications are from qiskit and as such, they do offer their own IBM Quantum Lab jupyter notebooks.
* [Deutsch-Jozsa Algorithm](https://github.com/justincpresley/ibm-quantum/blob/master/deutsch_jozsa_algo.ipynb): [specification](https://qiskit.org/textbook/ch-algorithms/deutsch-jozsa.html)
* [Grover's Algorithm](https://github.com/justincpresley/ibm-quantum/blob/master/grovers_algo.ipynb): [specification](https://qiskit.org/textbook/ch-algorithms/grover.html)
* [Teleportation](https://github.com/justincpresley/ibm-quantum/blob/master/teleportation.ipynb): [specification](https://qiskit.org/textbook/ch-algorithms/teleportation.html)
* [One Time Pad](https://github.com/justincpresley/ibm-quantum/blob/master/one_time_pad.ipynb): no available specification
* [Gottesman–Chuang Digital Signature](https://github.com/justincpresley/ibm-quantum/blob/master/digital_signature.ipynb): [specification](https://arxiv.org/pdf/quant-ph/0105032.pdf)
* [Enhanced SVM](https://github.com/justincpresley/ibm-quantum/blob/master/enhanced_svm.ipynb): [specification](https://qiskit.org/documentation/stable/0.24/tutorials/machine_learning/01_qsvm_classification.html)IBM allows anyone to not only use the IBM Quantum Lab, but also schedule jupyter notebooks on their own actual quantum machines FREE of charge. To do this, all that is need is to create a login via github, email, or some other method.
To get started: https://quantum-computing.ibm.com/
Throughout some of my scripts, I do include commands to run it on an actual quantum computer. The other option (that is included in all my scripts) is to use the statevector (virtualizing the process) which not only has no Quantum Noise, but allows you to see results instantaneously. You may also find the [qiskit textbook](https://qiskit.org/textbook/preface.html) more useful than my own as it essentially lays out the foundation of Quantum Computing.
NOTE: This is repository is an archive representing previous experience / knowledge.