Skip to content

Commit

Permalink
add dV13 in exchangeHalos of ve_hydro.hpp and ve_hydro_bdt.hpp
Browse files Browse the repository at this point in the history
  • Loading branch information
nknk567 committed Feb 11, 2025
1 parent 97118b3 commit 88f1c57
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion main/src/propagator/ve_hydro.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,8 @@ class HydroVeProp : public Propagator<DomainType, DataType>

if (avClean)
{
domain.exchangeHalos(get<"dV11", "dV12", "dV22", "dV23", "dV33", "alpha">(d), get<"ax">(d), get<"keys">(d));
domain.exchangeHalos(get<"dV11", "dV12", "dV13", "dV22", "dV23", "dV33", "alpha">(d), get<"ax">(d),
get<"keys">(d));
}
else { domain.exchangeHalos(std::tie(get<"alpha">(d)), get<"ax">(d), get<"keys">(d)); }
timer.step("mpi::synchronizeHalos");
Expand Down
2 changes: 1 addition & 1 deletion main/src/propagator/ve_hydro_bdt.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ class HydroVeBdtProp : public Propagator<DomainType, DataType>

if (avClean)
{
domain.exchangeHalos(get<"dV11", "dV12", "dV22", "dV23", "dV33", "alpha">(d), get<"keys">(d),
domain.exchangeHalos(get<"dV11", "dV12", "dV13", "dV22", "dV23", "dV33", "alpha">(d), get<"keys">(d),
haloRecvScratch);
}
else { domain.exchangeHalos(std::tie(get<"alpha">(d)), get<"keys">(d), haloRecvScratch); }
Expand Down

0 comments on commit 88f1c57

Please sign in to comment.