microsoft/qdk

Public

mirrored from https://github.com/microsoft/qdkAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
d069216bcbafa58dbc339aa8cb5d58ba26b7aa14

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

samples/samples.mjs

16lines · modecode

1// Copyright (c) Microsoft Corporation.
2// Licensed under the MIT License.
3
4// @ts-check
5
6// This file gives the order, title, and default shots for each sample
7
8/** @type {Array<{title: string; file: string; shots: number}>} */
9export default [
10 {title: "Minimal", file: "Minimal.qs", shots: 100},
11 {title: "Bell state", file: "BellState.qs", shots: 100},
12 {title: "Teleportation", file: "Teleportation.qs", shots: 10},
13 {title: "Random numbers", file: "qrng.qs", shots: 1000},
14 {title: "Deutsch-Jozsa", file: "DeutschJozsa.qs", shots: 1},
15 {title: "Grover's search", file: "Grover.qs", shots: 100},
16];
17