Skip to content

Conversation

@jwaldrop107
Copy link
Member

@jwaldrop107 jwaldrop107 commented Feb 12, 2025

Is this pull request associated with an issue(s)?
No

Description
Relocating the AO Integrals modules from SCF to here.

@jwaldrop107 jwaldrop107 self-assigned this Feb 12, 2025
Copy link
Member

@ryanmrichard ryanmrichard left a 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"));
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
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"));
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
k.multiplication_assignment("i,j", p("k,l"), I("i,k,l,j"));
k("i,j") = p("k,l") * I("i,k,l,j");

@jwaldrop107
Copy link
Member Author

Yeah, I was considering splitting the DF part off. That sounds good.

@jwaldrop107 jwaldrop107 marked this pull request as ready for review February 14, 2025 18:46
@ryanmrichard ryanmrichard merged commit a281194 into master Feb 14, 2025
9 checks passed
@ryanmrichard ryanmrichard deleted the ao_integrals branch February 14, 2025 18:54
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants