You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Works with only Intel or only AMD nodes. With a mix, it always fails in the same way. It completes loop 3 and gets stuck in the MPI_Barrier for loop 4.
#include
#include <mpi.h>
int main()
{
int argc = 0;
MPI_Init(&argc, nullptr);
const int count = 100;
for (int i = 0; i < count; ++i)
{
std::cout << " Attempting Barrier " << i + 1 << std::endl;
MPI_Barrier(MPI_COMM_WORLD);
std::cout << " Completed Barrier " << i + 1 << std::endl;
}
MPI_Finalize();
}
Works with only Intel or only AMD nodes. With a mix, it always fails in the same way. It completes loop 3 and gets stuck in the MPI_Barrier for loop 4.
#include
#include <mpi.h>
command line, from intel_machine:
mpiexec -hosts 2 localhost amd_machine -wdir "\network\path" \path-to-exe
output:
The text was updated successfully, but these errors were encountered: