mirror of
https://github.com/microsoft/mscclpp.git
synced 2026-05-12 17:26:04 +00:00
58 lines
1.7 KiB
C++
58 lines
1.7 KiB
C++
#include "bootstrap.h"
|
|
|
|
#include <memory>
|
|
|
|
#include <mpi.h>
|
|
|
|
int main()
|
|
{
|
|
int rank, worldSize;
|
|
MPI_Init(NULL, NULL);
|
|
MPI_Comm_rank(MPI_COMM_WORLD, &rank);
|
|
MPI_Comm_size(MPI_COMM_WORLD, &worldSize);
|
|
|
|
std::shared_ptr<mscclppBootstrap> bootstrap(new mscclppBootstrap(rank, worldSize));
|
|
// bootstrap->Initialize("costsim-dev-00000A:50000");
|
|
UniqueId id;
|
|
if (rank == 0)
|
|
id = bootstrap->GetUniqueId();
|
|
MPI_Bcast(&id, sizeof(id), MPI_BYTE, 0, MPI_COMM_WORLD);
|
|
bootstrap->Initialize(id);
|
|
|
|
std::vector<int> tmp(worldSize, 0);
|
|
tmp[rank] = rank+1;
|
|
bootstrap->AllGather(tmp.data(), sizeof(int));
|
|
for (int i = 0; i < worldSize; i++){
|
|
if (tmp[i] != i+1)
|
|
printf("error AllGather: rank %d: tmp[%d] = %d\n", rank, i, tmp[i]);
|
|
}
|
|
printf("rank %d: AllGather test passed!\n", rank);
|
|
|
|
bootstrap->Barrier();
|
|
printf("rank %d: Barrier test passed!\n", rank);
|
|
|
|
for (int i = 0; i < worldSize; i++){
|
|
if (i == rank)
|
|
continue;
|
|
int msg1 = (rank + 1)*2;
|
|
int msg2 = (rank + 1)*2+1;
|
|
bootstrap->Send(&msg1, sizeof(int), i, 0);
|
|
bootstrap->Send(&msg2, sizeof(int), i, 1);
|
|
}
|
|
|
|
for (int i = 0; i < worldSize; i++){
|
|
if (i == rank)
|
|
continue;
|
|
int msg1 = 0;
|
|
int msg2 = 0;
|
|
// recv them in the opposite order to check correctness
|
|
bootstrap->Recv(&msg2, sizeof(int), i, 1);
|
|
bootstrap->Recv(&msg1, sizeof(int), i, 0);
|
|
if (msg1 != (i+1)*2 || msg2 != (i+1)*2+1)
|
|
printf("error Send/Recv: rank %d: msg1 = %d, msg2 = %d\n", rank, msg1, msg2);
|
|
}
|
|
printf("rank %d: Send/Recv test passed!\n", rank);
|
|
|
|
MPI_Finalize();
|
|
return 0;
|
|
} |