├── .gitignore ├── LICENSE ├── README.md ├── Resources.ipynb ├── algorithms ├── Bell States.ipynb ├── Deutsch–Jozsa.ipynb ├── Hamiltonian Simulation.ipynb ├── Phase Kickback.ipynb ├── Prime Factorization.ipynb ├── README.md ├── Swap Test.ipynb ├── Teleportation.ipynb ├── VQE.ipynb ├── config_ex.py └── media │ └── swap_hardware.png ├── challenges ├── IBM 2021 │ ├── README.md │ ├── ex1 │ │ ├── ex1.ipynb │ │ ├── resources │ │ │ └── conference-photo.jpeg │ │ └── solution.ipynb │ ├── ex2 │ │ ├── ex2.ipynb │ │ └── solution.ipynb │ ├── ex3 │ │ ├── ex3.ipynb │ │ └── solution.ipynb │ ├── ex4 │ │ ├── ex4.ipynb │ │ └── resources │ │ │ ├── helper.py │ │ │ ├── pulse-instr.png │ │ │ ├── pulse-user-device-layers.png │ │ │ ├── transmon-charge-dispersion.png │ │ │ └── transmon-energy-levels.png │ └── ex5 │ │ ├── ex5.ipynb │ │ ├── resources │ │ ├── ansatz.png │ │ ├── mapping.png │ │ └── workflow.png │ │ └── solution.ipynb └── QOSF Monthly │ └── July 2021.ipynb └── papers ├── Alternating Layered Ansatz.ipynb ├── Constructing Large Controlled Nots.ipynb ├── Quantum State Preparation with Universal Gate Decompositions.ipynb └── Shor’s using 2n+3 qubits.ipynb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epelaaez/QuantumLibrary/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epelaaez/QuantumLibrary/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epelaaez/QuantumLibrary/HEAD/README.md -------------------------------------------------------------------------------- /Resources.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epelaaez/QuantumLibrary/HEAD/Resources.ipynb -------------------------------------------------------------------------------- /algorithms/Bell States.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epelaaez/QuantumLibrary/HEAD/algorithms/Bell States.ipynb -------------------------------------------------------------------------------- /algorithms/Deutsch–Jozsa.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epelaaez/QuantumLibrary/HEAD/algorithms/Deutsch–Jozsa.ipynb -------------------------------------------------------------------------------- /algorithms/Hamiltonian Simulation.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epelaaez/QuantumLibrary/HEAD/algorithms/Hamiltonian Simulation.ipynb -------------------------------------------------------------------------------- /algorithms/Phase Kickback.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epelaaez/QuantumLibrary/HEAD/algorithms/Phase Kickback.ipynb -------------------------------------------------------------------------------- /algorithms/Prime Factorization.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epelaaez/QuantumLibrary/HEAD/algorithms/Prime Factorization.ipynb -------------------------------------------------------------------------------- /algorithms/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epelaaez/QuantumLibrary/HEAD/algorithms/README.md -------------------------------------------------------------------------------- /algorithms/Swap Test.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epelaaez/QuantumLibrary/HEAD/algorithms/Swap Test.ipynb -------------------------------------------------------------------------------- /algorithms/Teleportation.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epelaaez/QuantumLibrary/HEAD/algorithms/Teleportation.ipynb -------------------------------------------------------------------------------- /algorithms/VQE.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epelaaez/QuantumLibrary/HEAD/algorithms/VQE.ipynb -------------------------------------------------------------------------------- /algorithms/config_ex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epelaaez/QuantumLibrary/HEAD/algorithms/config_ex.py -------------------------------------------------------------------------------- /algorithms/media/swap_hardware.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epelaaez/QuantumLibrary/HEAD/algorithms/media/swap_hardware.png -------------------------------------------------------------------------------- /challenges/IBM 2021/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epelaaez/QuantumLibrary/HEAD/challenges/IBM 2021/README.md -------------------------------------------------------------------------------- /challenges/IBM 2021/ex1/ex1.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epelaaez/QuantumLibrary/HEAD/challenges/IBM 2021/ex1/ex1.ipynb -------------------------------------------------------------------------------- /challenges/IBM 2021/ex1/resources/conference-photo.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epelaaez/QuantumLibrary/HEAD/challenges/IBM 2021/ex1/resources/conference-photo.jpeg -------------------------------------------------------------------------------- /challenges/IBM 2021/ex1/solution.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epelaaez/QuantumLibrary/HEAD/challenges/IBM 2021/ex1/solution.ipynb -------------------------------------------------------------------------------- /challenges/IBM 2021/ex2/ex2.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epelaaez/QuantumLibrary/HEAD/challenges/IBM 2021/ex2/ex2.ipynb -------------------------------------------------------------------------------- /challenges/IBM 2021/ex2/solution.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epelaaez/QuantumLibrary/HEAD/challenges/IBM 2021/ex2/solution.ipynb -------------------------------------------------------------------------------- /challenges/IBM 2021/ex3/ex3.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epelaaez/QuantumLibrary/HEAD/challenges/IBM 2021/ex3/ex3.ipynb -------------------------------------------------------------------------------- /challenges/IBM 2021/ex3/solution.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epelaaez/QuantumLibrary/HEAD/challenges/IBM 2021/ex3/solution.ipynb -------------------------------------------------------------------------------- /challenges/IBM 2021/ex4/ex4.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epelaaez/QuantumLibrary/HEAD/challenges/IBM 2021/ex4/ex4.ipynb -------------------------------------------------------------------------------- /challenges/IBM 2021/ex4/resources/helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epelaaez/QuantumLibrary/HEAD/challenges/IBM 2021/ex4/resources/helper.py -------------------------------------------------------------------------------- /challenges/IBM 2021/ex4/resources/pulse-instr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epelaaez/QuantumLibrary/HEAD/challenges/IBM 2021/ex4/resources/pulse-instr.png -------------------------------------------------------------------------------- /challenges/IBM 2021/ex4/resources/pulse-user-device-layers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epelaaez/QuantumLibrary/HEAD/challenges/IBM 2021/ex4/resources/pulse-user-device-layers.png -------------------------------------------------------------------------------- /challenges/IBM 2021/ex4/resources/transmon-charge-dispersion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epelaaez/QuantumLibrary/HEAD/challenges/IBM 2021/ex4/resources/transmon-charge-dispersion.png -------------------------------------------------------------------------------- /challenges/IBM 2021/ex4/resources/transmon-energy-levels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epelaaez/QuantumLibrary/HEAD/challenges/IBM 2021/ex4/resources/transmon-energy-levels.png -------------------------------------------------------------------------------- /challenges/IBM 2021/ex5/ex5.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epelaaez/QuantumLibrary/HEAD/challenges/IBM 2021/ex5/ex5.ipynb -------------------------------------------------------------------------------- /challenges/IBM 2021/ex5/resources/ansatz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epelaaez/QuantumLibrary/HEAD/challenges/IBM 2021/ex5/resources/ansatz.png -------------------------------------------------------------------------------- /challenges/IBM 2021/ex5/resources/mapping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epelaaez/QuantumLibrary/HEAD/challenges/IBM 2021/ex5/resources/mapping.png -------------------------------------------------------------------------------- /challenges/IBM 2021/ex5/resources/workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epelaaez/QuantumLibrary/HEAD/challenges/IBM 2021/ex5/resources/workflow.png -------------------------------------------------------------------------------- /challenges/IBM 2021/ex5/solution.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epelaaez/QuantumLibrary/HEAD/challenges/IBM 2021/ex5/solution.ipynb -------------------------------------------------------------------------------- /challenges/QOSF Monthly/July 2021.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epelaaez/QuantumLibrary/HEAD/challenges/QOSF Monthly/July 2021.ipynb -------------------------------------------------------------------------------- /papers/Alternating Layered Ansatz.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epelaaez/QuantumLibrary/HEAD/papers/Alternating Layered Ansatz.ipynb -------------------------------------------------------------------------------- /papers/Constructing Large Controlled Nots.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epelaaez/QuantumLibrary/HEAD/papers/Constructing Large Controlled Nots.ipynb -------------------------------------------------------------------------------- /papers/Quantum State Preparation with Universal Gate Decompositions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epelaaez/QuantumLibrary/HEAD/papers/Quantum State Preparation with Universal Gate Decompositions.ipynb -------------------------------------------------------------------------------- /papers/Shor’s using 2n+3 qubits.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epelaaez/QuantumLibrary/HEAD/papers/Shor’s using 2n+3 qubits.ipynb --------------------------------------------------------------------------------