-
Notifications
You must be signed in to change notification settings - Fork 376
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
[PBC Resources Estimates 2/4] Add Integral Factorization Helpers #822
[PBC Resources Estimates 2/4] Add Integral Factorization Helpers #822
Conversation
37c468e
to
a88d414
Compare
@mpharrigan ptal when you get a chance |
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.
lookin good
src/openfermion/resource_estimates/pbc/hamiltonian/cc_extensions.py
Outdated
Show resolved
Hide resolved
src/openfermion/resource_estimates/pbc/sparse/sparse_integrals.py
Outdated
Show resolved
Hide resolved
src/openfermion/resource_estimates/pbc/sparse/sparse_integrals.py
Outdated
Show resolved
Hide resolved
src/openfermion/resource_estimates/pbc/sparse/sparse_integrals.py
Outdated
Show resolved
Hide resolved
@@ -63,23 +63,23 @@ def load_thc_factors(chkfile_name: str) -> KPointTHC: | |||
xi = None | |||
with h5py.File(chkfile_name, "r") as fh5: | |||
chi = fh5["chi"][:] | |||
G_mapping = fh5["G_mapping"][:] | |||
num_kpts = G_mapping.shape[0] | |||
g_mapping = fh5["g_mapping"][:] |
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.
how was this ever working?
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.
I think this was some merge issue where I lowercased everything which was previously uppercase.
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.
so the lowercase hdf5 string is correct? it would be nice if this sort of thing was covered by a test
Part 2 of #821. Here we add utility classes to store the factorized integrals for later consumption by pyscf coupled cluster classes and / or resource estimation.