feat: implement GPU UCCSD(T) - #3
Open
dajiaohuang wants to merge 1 commit into
Open
Conversation
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
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.
Summary
(t1a, t1b)/(t2aa, t2ab, t2bb)blocksgpulim/mem_ratiocontract before uploading in-core transformed integralsNoneImplementation notes
The AO-to-MO transformation remains in PySCF on the host, matching the existing conventional CCSD path. Transformed spin-orbital blocks, iterative CCSD contractions, DIIS amplitudes, and (T) contractions run through CuPy. This first unrestricted implementation is deliberately in-core; it reports the required and configured GPU integral footprints before upload when the calculation is too large.
Validation
cucc/test/test_uccsd.py: 2 tests passed on an NVIDIA RTX 5070 Ti with PySCF 2.5.0 and CuPy 14.2.0, using ByteQC's actualBufferPool1.1e-18and3.2e-22; all five unrestricted amplitude blocks agree within1.7e-173.5e-10and3.1e-11; frozen-core validation agrees within2.8e-10and2.5e-11python -m py_compile cucc/__init__.py cucc/uccsd.py cucc/test/test_uccsd.pyruff check --ignore N999 cucc/__init__.py cucc/uccsd.py cucc/test/test_uccsd.pygit diff --checkCloses #1