microsoft/qdk
Publicmirrored from https://github.com/microsoft/qdkAvailable
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}>} */ |
| 9 | export 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 | |