Skip to content

Commit 255c201

Browse files
Dror SegmanDror Segman
Dror Segman
authored and
Dror Segman
committed
keep writing and add timeout
1 parent 367798d commit 255c201

File tree

2 files changed

+30
-2
lines changed

2 files changed

+30
-2
lines changed

tests/resources/timeouts.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -318,3 +318,4 @@ time_marching.qmod: 400
318318
solving_qlsp_with_aqc.ipynb: 800
319319
solving_qlsp_with_aqc.qmod: 800
320320
combinatorial_qmod_workshop_for_maxcut.ipynb: 250
321+
tutorials/classiq_tutorial/the_classiq_workflow.ipynb: 1000

tutorials/classiq_tutorial/the_classiq_workflow.ipynb

+29-2
Original file line numberDiff line numberDiff line change
@@ -10,17 +10,44 @@
1010
"- **Designing a quantum algorithm** using the Qmod language and it's accompanied function library.\n",
1111
"- **Synthesizing the algorithm** into a concrete circuit implementation.\n",
1212
"- **Executing the algorithm** on a chosen simulator or quantum harware.\n",
13-
"- **Post-processing** the results."
13+
"- **Post-processing** the results.\n",
14+
"\n",
15+
"To get started, run:"
1416
]
1517
},
1618
{
1719
"cell_type": "code",
18-
"execution_count": 1,
20+
"execution_count": 2,
1921
"metadata": {},
2022
"outputs": [],
2123
"source": [
2224
"from classiq import *"
2325
]
26+
},
27+
{
28+
"cell_type": "markdown",
29+
"metadata": {},
30+
"source": [
31+
"If this `import` doesn't work for you, please try `pip install classiq` in your terminal, or refer to [Registration and Installation](https://docs.classiq.io/latest/classiq_101/registration_installations/)."
32+
]
33+
},
34+
{
35+
"cell_type": "markdown",
36+
"metadata": {},
37+
"source": [
38+
"## Designing a quantum algorithm\n",
39+
"\n"
40+
]
41+
},
42+
{
43+
"cell_type": "code",
44+
"execution_count": null,
45+
"metadata": {},
46+
"outputs": [],
47+
"source": [
48+
"@qfunc\n",
49+
"def main()"
50+
]
2451
}
2552
],
2653
"metadata": {

0 commit comments

Comments
 (0)