Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Introduce fractional gates #1734

Merged
merged 25 commits into from
Nov 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
2cd94a2
Create draft of page and add it to toc
kaelynj Jul 16, 2024
7d4f903
Flesh out draft with two more sections
kaelynj Jul 17, 2024
ade901c
Finish draft of fractional gates page
kaelynj Jul 18, 2024
e264d25
Fix CI issues
kaelynj Jul 18, 2024
43811f0
Include processor types fractional gates are supported
kaelynj Jul 18, 2024
4d57de2
Merge branch 'main' into kjf/fractional-gates
kaelynj Jul 18, 2024
a5e07c6
Fix pass manager bug from CI
kaelynj Jul 18, 2024
716a56c
Impplement suggestion from @javabseter
kaelynj Jul 19, 2024
4ca2d50
Reorganize sections of page
kaelynj Jul 23, 2024
3a0a211
Merge branch 'main' into kjf/fractional-gates
kaelynj Oct 23, 2024
976ab55
Fix toc, implement suggestions from code review
kaelynj Oct 28, 2024
5f31ab4
Merge branch 'main' into kjf/fractional-gates
kaelynj Oct 28, 2024
ba7f405
Stop testing notebook b/c Heron is not free
kaelynj Oct 28, 2024
4b19e8e
Implement code review suggestions
kaelynj Oct 30, 2024
97cce99
Merge branch 'main' of github.com:Qiskit/documentation into kjf/fract…
kaelynj Oct 31, 2024
c5c9090
Lint notebook
kaelynj Oct 31, 2024
1040f2e
Apply suggestions from code review
kaelynj Nov 4, 2024
9c1422d
Apply suggestions from code review
kaelynj Nov 4, 2024
bbe8103
Apply suggestions from @yaelbh's code review
kaelynj Nov 4, 2024
e612737
Merge branch 'main' of github.com:Qiskit/documentation into kjf/fract…
kaelynj Nov 4, 2024
1cd378e
Re-lint notebook with updated linter
kaelynj Nov 4, 2024
45e8bb7
Merge branch 'main' of github.com:Qiskit/documentation into kjf/fract…
kaelynj Nov 6, 2024
0393025
Regen notebook outputs
kaelynj Nov 6, 2024
a7c32bb
Implement suggestion from @nkanazawa1989
kaelynj Nov 6, 2024
5bdbe90
Apply suggestions from code review
abbycross Nov 7, 2024
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
4 changes: 4 additions & 0 deletions docs/guides/_toc.json
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,10 @@
"title": "Construct circuits",
"url": "/guides/construct-circuits"
},
{
"title": "Fractional gates",
"url": "/guides/fractional-gates"
},
{
"title": "Classical feedforward and control flow",
"url": "/guides/classical-feedforward-and-control-flow"
Expand Down
377 changes: 377 additions & 0 deletions docs/guides/fractional-gates.ipynb

Large diffs are not rendered by default.

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)
* [Fractional gates](./fractional-gates)
* [Classical feedforward and control flow](./classical-feedforward-and-control-flow)
* [Synthesize unitary operators](./synthesize-unitary-operators)
* [Bit-ordering in the Qiskit SDK](./bit-ordering)
Expand Down
2 changes: 2 additions & 0 deletions qiskit_bot.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,8 @@ notifications:
- "`@lerongil`"
- "@jyu00"
- "@beckykd"
"docs/guides/fractional-gates":
- "@kaelynj"
"docs/guides/measure-qubits":
- "@beckykd"
"docs/guides/get-qpu-information":
Expand Down
1 change: 1 addition & 0 deletions scripts/config/notebook-testing.toml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ notebooks_exclude = [
"docs/guides/functions.ipynb",
"docs/guides/qunasys-quri-chemistry.ipynb",
"docs/guides/ibm-circuit-function.ipynb",
"docs/guides/fractional-gates.ipynb",
]

# The following notebooks submit jobs that can be mocked with a simulator
Expand Down
Loading