Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/release_log.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@
2024-11-07T12:25+00:00
2024-11-11T14:33+00:00
2025-01-21T09:30+00:00
2025-01-28T08:42+00:00
1 change: 1 addition & 0 deletions tests/resources/timeouts.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -318,3 +318,4 @@ time_marching.qmod: 400
solving_qlsp_with_aqc.ipynb: 800
solving_qlsp_with_aqc.qmod: 800
combinatorial_qmod_workshop_for_maxcut.ipynb: 250
tutorials/classiq_tutorial/the_classiq_workflow.ipynb: 1000
74 changes: 74 additions & 0 deletions tutorials/classiq_tutorial/the_classiq_workflow.ipynb
Original file line number Diff line number Diff line change
@@ -0,0 +1,74 @@
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# The Classiq Workflow\n",
"\n",
"This notebook introduces the typical workflow with Classiq:\n",
"- **Designing a quantum algorithm** using the Qmod language and it's accompanied function library.\n",
"- **Synthesizing the algorithm** into a concrete circuit implementation.\n",
"- **Executing the algorithm** on a chosen simulator or quantum harware.\n",
"- **Post-processing** the results.\n",
"\n",
"To get started, run:"
]
},
{
"cell_type": "code",
"execution_count": 2,
"metadata": {},
"outputs": [],
"source": [
"from classiq import *"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"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/)."
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Designing a quantum algorithm\n",
"\n"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"@qfunc\n",
"def main()"
]
}
],
"metadata": {
"kernelspec": {
"display_name": "external-user-venv-PaJZMdG0-py3.11",
"language": "python",
"name": "python3"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.11.6"
}
},
"nbformat": 4,
"nbformat_minor": 2
}
Loading