-
Notifications
You must be signed in to change notification settings - Fork 113
/
Copy pathsamples.mjs
31 lines (28 loc) · 2.1 KB
/
samples.mjs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
// @ts-check
// This file gives the order, title, and default shots for each sample
/** @type {Array<{title: string; file: string; shots: number; omitFromTests?: boolean}>} */
export default [
{ title: "Minimal", file: "./language/GettingStarted.qs", shots: 100 },
{ title: "Superposition", file: "./algorithms/Superposition.qs", shots: 100 },
{ title: "Entanglement", file: "./algorithms/Entanglement.qs", shots: 100 },
{ title: "Simple Bell Pair", file: "./algorithms/SimpleBellPair.qs", shots: 1000 },
{ title: "Bell States", file: "./algorithms/BellState.qs", shots: 100 },
{ title: "Teleportation", file: "./algorithms/Teleportation.qs", shots: 1 },
{ title: "Random Bit", file: "./algorithms/RandomBit.qs", shots: 100 },
{ title: "Random Number Generator", file: "./algorithms/QRNGNISQ.qs", shots: 1000 },
{ title: "Random Number Generator (Advanced)", file: "./algorithms/QRNG.qs", shots: 1000 },
{ title: "Deutsch-Jozsa", file: "./algorithms/DeutschJozsaNISQ.qs", shots: 1 },
{ title: "Deutsch-Jozsa (Advanced)", file: "./algorithms/DeutschJozsa.qs", shots: 1 },
{ title: "Bernstein-Vazirani", file: "./algorithms/BernsteinVaziraniNISQ.qs", shots: 1 },
{ title: "Bernstein-Vazirani (Advanced)", file: "./algorithms/BernsteinVazirani.qs", shots: 1 },
{ title: "Grover's Search", file: "./algorithms/Grover.qs", shots: 100 },
{ title: "Hidden Shift", file: "./algorithms/HiddenShiftNISQ.qs", shots: 1 },
{ title: "Hidden Shift (Advanced)", file: "./algorithms/HiddenShift.qs", shots: 1 },
{ title: "Shor", file: "./algorithms/Shor.qs", shots: 1 },
{ title: "Three Qubit Repetition Code", file: "./algorithms/ThreeQubitRepetitionCode.qs", shots: 1 },
{ title: "Dynamics (Resource Estimation)", file: "./estimation/Dynamics.qs", shots: 1, omitFromTests: true },
{ title: "Precalculated (Resource Estimation)", file: "./estimation/Precalculated.qs", shots: 1, omitFromTests: true },
{ title: "Shor (Resource Estimation)", file: "./estimation/ShorRE.qs", shots: 1, omitFromTests: true },
]