microsoft / QuantumKatas
- суббота, 18 июля 2020 г. в 00:24:10
Jupyter Notebook
Tutorials and programming exercises for learning Q# and quantum computing
The Quantum Katas are a series of self-paced tutorials to help you learn quantum computing and Q# programming.
Each kata is a separate project that includes:
For a Q# programming language quick reference sheet, see Q# Language Quick Reference.
The Quantum Katas are now available as Jupyter Notebooks online! See index.ipynb for the list of all katas and tutorials, and instructions for running them online.
While running the Katas online is the easiest option to get started, if you want to save your progress and enjoy better performance, we recommend you to choose the local option.
To use the Quantum Katas locally, you'll need the Quantum Development Kit, available for Windows 10, macOS, and Linux. If you don't already have the Quantum Development Kit installed, see the install guide for the Quantum Development Kit.
If you want to run the katas and tutorials locally as Jupyter Notebooks:
pytest
package.matplotlib
package.If you want to run the katas and tutorials locally as Q# projects:
Follow the steps in the QDK install guide for Visual Studio, for Visual Studio Code or for command line with other editors.
If you have Git installed, clone the Microsoft/QuantumKatas repository:
$ git clone https://github.com/Microsoft/QuantumKatas.git
[!TIP] Both Visual Studio 2019 and Visual Studio Code make it easy to clone repositories from within your development environment. For details, see the Visual Studio 2019 and Visual Studio Code documentation.
If you don't have Git installed, download the katas from https://github.com/Microsoft/QuantumKatas/archive/master.zip.
The best way to run the katas as Jupyter Notebooks is to navigate to the root folder of the repository and to open index.ipynb
using Jupyter:
$ cd QuantumKatas/ $ jupyter notebook index.ipynb
This will open the notebook that contains a list of all katas and tutorials, and you will be able to navigate to the one you want using links.
You can also open an individual notebook directly, but this might render internal links invalid:
$ cd QuantumKatas/tutorials/ComplexArithmetic $ jupyter notebook ComplexArithmetic.ipynb
Each kata is in its own directory as a self-contained Q# project, solution and Jupyter Notebook triplet. For instance, the BasicGates directory structure is:
QuantumKatas/
BasicGates/
README.md # Instructions specific to this kata.
.vscode/ # Metadata used by Visual Studio Code.
BasicGates.sln # Visual Studio 2019 solution file.
BasicGates.csproj # Project file used to build both classical and quantum code.
BasicGates.ipynb # Jupyter Notebook front-end for this kata.
Tasks.qs # Q# source code that you will fill as you solve each task.
Tests.qs # Q# tests that verify your solutions.
TestSuiteRunner.cs # C# source code used to run the Q# tests.
ReferenceImplementation.qs # Q# source code containing solutions to the tasks.
To open the BasicGates kata in Visual Studio 2019, open the QuantumKatas/BasicGates/BasicGates.sln solution file.
To open the BasicGates kata in Visual Studio Code, open the QuantumKatas/BasicGates/ folder. Press Ctrl + Shift + P (or ⌘ + Shift + P on macOS) to open the Command Palette. Type Open Folder on Windows 10 or Linux or Open on macOS.
[!TIP] Almost all commands available in Visual Studio Code are in the Command Palette. If you get stuck, press Ctrl + Shift + P (or ⌘ + Shift + P on macOS) and start typing to search through all available commands.
You can also launch Visual Studio Code from the command line:
$ code QuantumKatas/BasicGates/
Once you have a kata open, it's time to run the tests using the following instructions. Initially all tests will fail. Don't panic! Open Tasks.qs and start filling in the code to complete the tasks. Each task is covered by a unit test. Once you fill in the correct code for a task, rebuild the project and re-run the tests, and the corresponding unit test will pass.
cd
command.dotnet test
in the integrated terminal.
This should build the kata project and run all of the unit tests. All of the unit tests should fail.dotnet test
again.For convenience, a tasks.json configuration file exists for each kata. It allows Visual Studio Code to run the build and test steps from the Command Palette. Press Ctrl + Shift + P (or ⌘ + Shift + P on macOS) to open the Palette and type Run Build Task or Run Test Task and press Enter.
You can use the included Dockerfile to create a docker image with all the necessary tools to run the katas from the command line or Jupyter.
katas
:docker build -t katas .
katas-container
with interactive command-line and redirect container port 8888
to local port 8888
(needed to run Jupyter):docker run -it --name katas-container -p 8888:8888 katas /bin/bash
cd ~/BasicGates/
dotnet test
cd ~/BasicGates/ && jupyter notebook --ip=0.0.0.0 --no-browser
http://localhost:8888/notebooks/BasicGates.ipynb
To exit a docker container without killing it (daemon mode), press Ctrl+P, Ctrl+Q
To re-enter the existing katas-container
(in daemon mode):
docker attach katas-container
Once you're done, remove the katas-container
:
docker rm --force katas-container
This project welcomes contributions and suggestions. See How Can I Contribute? for details.
This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.