-
Notifications
You must be signed in to change notification settings - Fork 10
Feat vqa remote #173
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
Draft
MoHermes
wants to merge
47
commits into
dev
Choose a base branch
from
feat-vqa-remote
base: dev
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Feat vqa remote #173
Changes from all commits
Commits
Show all changes
47 commits
Select commit
Hold shift + click to select a range
3defccf
feat: add VQA remote execution skeleton, to be modified
MoHermes c1d4ef7
chore: Files formated
github-actions[bot] aa840d3
feat: implement CMA-ES optimizer
MoHermes 4a27341
Merge branch 'feat-vqa-remote' of github.com:ColibrITD-SAS/mpqp into …
MoHermes b8fb035
feat: support qiskit runtime session in ibm_connection
MoHermes 5c111b7
chore: bind parameters for qiskit and braket
MoHermes 4830dce
Merge remote-tracking branch 'origin/dev' into feat-vqa-remote
MoHermes 36c66a6
Merge branch 'feat-to-other-language-AWS' into feat-vqa-remote
MoHermes 83d709e
Merge branch 'dev' into feat-vqa-remote
MoHermes b2f1f66
feat: transpiled_circuit is device specific
MoHermes 286cad9
feat: support device specific pre-transpilation for observables
MoHermes db29259
chore: Files formated
github-actions[bot] d2097e5
fix: handle single atom case for Braket
MoHermes 91b3662
Merge branch 'feat-vqa-remote' of github.com:ColibrITD-SAS/mpqp into …
MoHermes 604c356
chore: simplify handling Symbol
MoHermes 66eef74
fix: type check
MoHermes caf0fa4
chore: avoid re-transpiling for the same device
MoHermes a39d309
chore: modify device specific transpilation logic
MoHermes 926581f
Merge branch 'dev' into feat-vqa-remote
MoHermes 3a86af8
fix: type hinting
MoHermes 81c320e
Merge branch 'feat-to-other-language-AWS' of github.com:ColibrITD-SAS…
MoHermes 2b36609
chore: update session handling
MoHermes cfd31a3
chore: enhance IBM session use
MoHermes 9371c45
feat: add unified execution pipeline, to support job, batch and session
MoHermes ba90fc7
feat: support batch and session execution modes with IBM runtime
MoHermes fa30dee
feat: add VQAMode support to Job model
MoHermes 555cb07
chore: Files formated
github-actions[bot] 463640e
chore: update bind_parameters in QCircuit
MoHermes 9f89b89
chore: update optimizer behavior
MoHermes efa86c4
chore: update vqa implementation
MoHermes ce9576a
feat: handle bind parameters
MoHermes 16f09ef
fix: improve session handling
MoHermes 70e06cd
chore: Files formated
github-actions[bot] eeb7a16
fix: avoid repeated observable pre_transpile conversion, update types
MoHermes 275e605
chore: update job handling
MoHermes 69862b1
fix: bind parameters on transpiled circuit without mutating original
MoHermes ad716f6
chore: update remote execution flow
MoHermes 1825b94
chore: rename mode, simplify batch handling
MoHermes d7f050f
chore: update __init__ with ExecutionMode
MoHermes 65fecc4
fix: resolve typing, apply_layout handling
MoHermes 30d1b60
fix: remove invlaid pre_transpile, use translated_pre_measures
MoHermes 0549399
fix: pre-transpilation caching per device
MoHermes 9206790
fix: type annotations
MoHermes dd06bae
chore: update CMA-ES usage
MoHermes 92161e8
chore: update vqa, type issues need to be fixed
MoHermes 2d7b5d9
Merge branch 'dev' of github.com:ColibrITD-SAS/mpqp into feat-vqa-remote
hJaffaliColibritd cd83727
chore: Files formated
github-actions[bot] File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
For some providers, we would call to_other_device for each device , because MPQP translation and transpilation is device specific (like IBM), but for AWS/QLM for instance, we only need to_other_language (which is handled by to_other_device if I remember well), but then would need a different indexing of the dictionnary, otherwise we would export the mpqp circuit many times if we change the AWSDevice for instance (while we could have avoided).