This repository has been archived by the owner on Dec 7, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 376
Conversation
This file contains 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
adekusar-drl
requested review from
manoelmarques,
stefan-woerner and
woodsp-ibm
as code owners
August 14, 2020 12:28
@manoelmarques could you please check the logs of Aqua Unit Tests / Chemistry (3.7) (pull_request):
|
woodsp-ibm
added
the
Changelog: New Feature
Include in the Added section of the changelog
label
Aug 14, 2020
woodsp-ibm
reviewed
Aug 14, 2020
Can you also add a reno release note since this a user facing change that should be included in the main release notes. |
Co-authored-by: Steve Wood <40241007+woodsp-ibm@users.noreply.github.com>
yeah, forgot about reno. |
Updated. |
woodsp-ibm
suggested changes
Aug 17, 2020
woodsp-ibm
reviewed
Aug 17, 2020
woodsp-ibm
approved these changes
Aug 17, 2020
stefan-woerner
approved these changes
Aug 17, 2020
Cryoris
pushed a commit
to Cryoris/qiskit-aqua
that referenced
this pull request
Sep 3, 2020
* warm start admm * Update qiskit/optimization/algorithms/admm_optimizer.py Co-authored-by: Steve Wood <40241007+woodsp-ibm@users.noreply.github.com> * updated documentation * moved reno to a new file * Update releasenotes/notes/admm-warm-start-6f5b5c801bcdf78f.yaml Co-authored-by: Manoel Marques <Manoel.Marques@ibm.com> Co-authored-by: Steve Wood <40241007+woodsp-ibm@users.noreply.github.com>
pbark
pushed a commit
to pbark/qiskit-aqua
that referenced
this pull request
Sep 16, 2020
* warm start admm * Update qiskit/optimization/algorithms/admm_optimizer.py Co-authored-by: Steve Wood <40241007+woodsp-ibm@users.noreply.github.com> * updated documentation * moved reno to a new file * Update releasenotes/notes/admm-warm-start-6f5b5c801bcdf78f.yaml Co-authored-by: Manoel Marques <Manoel.Marques@ibm.com> Co-authored-by: Steve Wood <40241007+woodsp-ibm@users.noreply.github.com>
manoelmarques
added a commit
to qiskit-community/qiskit-optimization
that referenced
this pull request
Jan 14, 2021
* warm start admm * Update qiskit/optimization/algorithms/admm_optimizer.py Co-authored-by: Steve Wood <40241007+woodsp-ibm@users.noreply.github.com> * updated documentation * moved reno to a new file * Update releasenotes/notes/admm-warm-start-6f5b5c801bcdf78f.yaml Co-authored-by: Manoel Marques <Manoel.Marques@ibm.com> Co-authored-by: Steve Wood <40241007+woodsp-ibm@users.noreply.github.com>
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Labels
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.
Summary
Introduced a warm start ADMM where a relaxed (continuous) problem is solved first and the solution is used to initialize the state of ADMM.
Details and comments
Added a parameter
warm_start
toADMMParameters
to enable this feature. When it set toTrue
the state ofx0
,u
,z
is initialized from the relaxed problem solution.