For reason X git decided to remove integration from the most critical part of the program when merging. Luckily we have autotests.

This commit is contained in:
jpekkila
2020-05-30 20:59:39 +03:00
parent 9cafe88d13
commit f97ed9e513

View File

@@ -1365,6 +1365,14 @@ acGridIntegrate(const Stream stream, const AcReal dt)
acPackCommData(device, sidexz_b0s, &sidexz_data); acPackCommData(device, sidexz_b0s, &sidexz_data);
acPackCommData(device, sideyz_b0s, &sideyz_data); acPackCommData(device, sideyz_b0s, &sideyz_data);
//////////// INNER INTEGRATION //////////////
{
const int3 m1 = (int3){2 * NGHOST, 2 * NGHOST, 2 * NGHOST};
const int3 m2 = nn;
acDeviceIntegrateSubstep(device, STREAM_16, isubstep, m1, m2, dt);
}
////////////////////////////////////////////
MPI_Barrier(MPI_COMM_WORLD); MPI_Barrier(MPI_COMM_WORLD);
#if MPI_GPUDIRECT_DISABLED #if MPI_GPUDIRECT_DISABLED