-
Notifications
You must be signed in to change notification settings - Fork 37
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
Active space extension #83
Open
mrossinek
wants to merge
3
commits into
MolSSI:master
Choose a base branch
from
mrossinek:active_space_extension
base: master
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.
Open
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
mrossinek
added a commit
to mrossinek/qiskit-nature
that referenced
this pull request
Aug 2, 2022
Adds the Active-Space extension to the QCSchema as proposed here: MolSSI/QCSchema#83
mrossinek
added a commit
to mrossinek/qiskit-nature
that referenced
this pull request
Aug 2, 2022
Adds the Active-Space extension to the QCSchema as proposed here: MolSSI/QCSchema#83
mrossinek
added a commit
to mrossinek/qiskit-nature
that referenced
this pull request
Aug 3, 2022
Adds the Active-Space extension to the QCSchema as proposed here: MolSSI/QCSchema#83
When using this for active spaces, we should also add a field in the |
I would like to discuss this suggestion a bit more. Simply adding the |
mergify bot
pushed a commit
to qiskit-community/qiskit-nature
that referenced
this pull request
Aug 8, 2022
* feat: support basic QCSchema Adds dataclasses to represent data stored in the QCSchema format [1]. Some basic test cases have been taken from the QCSchema test files. For this to be usable, further changes are required extending the QCSchema to support active-spaces, by including the two-body terms directly in the files. Support for HDF5 files will also need to be added. [1]: https://molssi-qc-schema.readthedocs.io/en/latest/index.html * HDF5 integration for QCSchema * refactor: improve the QCSchema unittests * test: prepare HDF5 capabilities tests * feat: Active-Space Extension Adds the Active-Space extension to the QCSchema as proposed here: MolSSI/QCSchema#83 * Add reno * docs: add QCSchema attribute documentation * Fix sphinx docs * generalize type hints of QCSchema attributes * fix: respect optionality of attributes in typehint * refactor: split QCSchema into multiple files The qcschema.py file has grown quite substantially. In order to improve maintainability and class extensions down the road, this refactoring splits that single file into multiple files. * refactor unittest to use TemporaryDirectory The validity of this change has been tested in #770, since the test here is currently still being skipped. * Add documentation on optional attributes of QCSchema Co-authored-by: Manoel Marques <manoel.marques@ibm.com>
Anthony-Gandon
pushed a commit
to Anthony-Gandon/qiskit-nature
that referenced
this pull request
May 25, 2023
* feat: support basic QCSchema Adds dataclasses to represent data stored in the QCSchema format [1]. Some basic test cases have been taken from the QCSchema test files. For this to be usable, further changes are required extending the QCSchema to support active-spaces, by including the two-body terms directly in the files. Support for HDF5 files will also need to be added. [1]: https://molssi-qc-schema.readthedocs.io/en/latest/index.html * HDF5 integration for QCSchema * refactor: improve the QCSchema unittests * test: prepare HDF5 capabilities tests * feat: Active-Space Extension Adds the Active-Space extension to the QCSchema as proposed here: MolSSI/QCSchema#83 * Add reno * docs: add QCSchema attribute documentation * Fix sphinx docs * generalize type hints of QCSchema attributes * fix: respect optionality of attributes in typehint * refactor: split QCSchema into multiple files The qcschema.py file has grown quite substantially. In order to improve maintainability and class extensions down the road, this refactoring splits that single file into multiple files. * refactor unittest to use TemporaryDirectory The validity of this change has been tested in qiskit-community#770, since the test here is currently still being skipped. * Add documentation on optional attributes of QCSchema Co-authored-by: Manoel Marques <manoel.marques@ibm.com>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Description
I would like to extend this schema to support active space-based embedding techniques.
For this to work efficiently, we need to add two additions to the schema:
Questions
_mo_
named keywords but I don't think this scales well for the future.eri
terms? This would permit not having to sendO(N^4)
numbers when up to 8-fold symmetry could be exploited.Status