-
Notifications
You must be signed in to change notification settings - Fork 1
AO Integrals #134
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
AO Integrals #134
Conversation
ryanmrichard
left a comment
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.
Can we split the DF modules off into a second PR? I wanted to get some preliminary data with the J/K UQ stuff.
| const auto& I = eri_mod.run_as<pt_4c>(std::move(ij_v_kl)); | ||
|
|
||
| simde::type::tensor j; | ||
| j.multiplication_assignment("i,j", p("k,l"), I("i,j,k,l")); |
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.
| j.multiplication_assignment("i,j", p("k,l"), I("i,j,k,l")); | |
| j("i,j") = p("k,l") * I("i,j,k,l"); |
This is the intended DSL usage.
| const auto& I = eri_mod.run_as<pt_4c>(std::move(ik_v_lj)); | ||
|
|
||
| simde::type::tensor k; | ||
| k.multiplication_assignment("i,j", p("k,l"), I("i,k,l,j")); |
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.
| k.multiplication_assignment("i,j", p("k,l"), I("i,k,l,j")); | |
| k("i,j") = p("k,l") * I("i,k,l,j"); |
|
Yeah, I was considering splitting the DF part off. That sounds good. |
Is this pull request associated with an issue(s)?
No
Description
Relocating the AO Integrals modules from SCF to here.