Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
24ba644
Add timing visualization page
beckykd Sep 22, 2025
e2ae1e1
add to index page
beckykd Sep 29, 2025
88646b9
Add sections for new content
beckykd Sep 29, 2025
3303844
link fix
beckykd Sep 29, 2025
a910172
squeaky
beckykd Sep 29, 2025
0b73cf8
add missing imports
beckykd Sep 29, 2025
b672db3
Merge branch 'main' into bd-visualize-timing
beckykd Sep 30, 2025
0b30e05
add to qiskit bot again
beckykd Sep 30, 2025
fd53840
updates
beckykd Oct 1, 2025
484f7f3
more bits
beckykd Oct 1, 2025
5ea4e32
more edits
beckykd Oct 1, 2025
8cd0a20
more changes
beckykd Oct 1, 2025
6529391
add stretch content
beckykd Oct 2, 2025
b22e47f
some fixes
beckykd Oct 2, 2025
cfd0106
change variable name
beckykd Oct 2, 2025
8fe0dc2
squeaky again
beckykd Oct 2, 2025
2685cad
edits
beckykd Oct 2, 2025
18d33c7
there's only 1 sub-argument
beckykd Oct 3, 2025
105384c
Roy comments
beckykd Oct 3, 2025
b433653
Add new instructions
beckykd Oct 6, 2025
2a96596
Jessie comments
beckykd Oct 8, 2025
7784441
change figure renderer
beckykd Oct 8, 2025
daa7368
Get runtime from Roy's PR
beckykd Oct 8, 2025
73ce4e2
More jessie comments
beckykd Oct 8, 2025
623adcc
Merge branch 'main' into bd-visualize-timing
beckykd Oct 8, 2025
408d368
spelling
beckykd Oct 9, 2025
013f725
makin it work
beckykd Oct 9, 2025
b61595a
Change to least busy
beckykd Oct 9, 2025
1424071
squeaky again
beckykd Oct 9, 2025
6c16da3
WE DON'T WANT V40
beckykd Oct 9, 2025
5426140
Add plotly and fix up runtime-options-overview
beckykd Oct 9, 2025
f21503f
There's only one circuit
beckykd Oct 10, 2025
deb232f
WOO HOO!! IT WORKSSSS
beckykd Oct 10, 2025
560bc72
found a missing >
beckykd Oct 10, 2025
7138088
shuffle some things around
beckykd Oct 10, 2025
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 .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,4 @@ poetry.lock
Untitled*.ipynb
*.tar
*.tar.gz
How_to_get_and_visualize_scheduler_timing.ipynb
5 changes: 5 additions & 0 deletions docs/guides/_toc.json
Original file line number Diff line number Diff line change
Expand Up @@ -634,6 +634,11 @@
"title": "Visualize circuits",
"url": "/docs/guides/visualize-circuits"
},
{
"title": "Visualize circuit timing",
"url": "/docs/guides/visualize-circuit-timing"
},

{
"title": "Plot quantum states",
"url": "/docs/guides/plot-quantum-states"
Expand Down
6 changes: 3 additions & 3 deletions docs/guides/classical-feedforward-and-control-flow.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -287,12 +287,12 @@
},
{
"cell_type": "markdown",
"id": "203cbeaa-3522-4ebd-8ac7-df7741f759f2",
"id": "f01b52c8-77d3-4052-bece-75ca998e7bb5",
"metadata": {},
"source": [
"## Find backends that support dynamic circuits\n",
"\n",
"To find all backends that support dynamic circuits and that your account can access, run code like the following. This example assumes that you have [saved your login credentials.](/docs/guides/save-credentials) You could also [initialize your Qiskit Runtime service account](/docs/guides/initialize-account#explicit) with manually-specified credentials. In this case, you could view backends available on a specific instance or plan type, for example.\n",
"To find all backends that your account can access and support dynamic circuits, run code like the following. This example assumes that you have [saved your login credentials.](/docs/guides/save-credentials) You could also [explicitly specify credentials](/docs/guides/initialize-account#explicit) when initializing your Qiskit Runtime service account. This would let you view backends available on a specific instance or plan type, for example.\n",
"\n",
"<Admonition type=\"note\">\n",
"The backends that are available to the account depend on the instance specified in the credentials.\n",
Expand All @@ -302,7 +302,7 @@
{
"cell_type": "code",
"execution_count": null,
"id": "2ddb1b97-4223-427b-a4cd-99e2f6ccbfe9",
"id": "6b04b732-8143-4d76-bc43-a12ed0790bf6",
"metadata": {},
"outputs": [],
"source": [
Expand Down
1 change: 1 addition & 0 deletions docs/guides/map-problem-to-circuits.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ The output of this step in a Qiskit pattern is normally a collection of circuits
* [Construct circuits](./construct-circuits)
* [Measure qubits](./measure-qubits)
* [Visualize circuits](./visualize-circuits)
* [Visualize circuit timing](./visualize-circuit-timing)
* [Fractional gates](./fractional-gates)
* [Classical feedforward and control flow](./classical-feedforward-and-control-flow)
* [Deferred timing resolution using stretch](./stretch)
Expand Down
Loading
Loading