add persistent ping-pong

This commit is contained in:
Carl William Pearson
2021-06-02 10:57:47 -06:00
parent 400f4846bb
commit b6d120bf29
6 changed files with 180 additions and 1 deletions

1
.gitignore vendored
View File

@@ -1,2 +1,3 @@
one-sided
main
persistent

View File

@@ -1,4 +1,4 @@
TARGETS = main one-sided
TARGETS = main one-sided persistent
all: ${TARGETS}
@@ -14,3 +14,6 @@ main: main.cpp Makefile
one-sided: one_sided.cpp Makefile
$(MPICXX) $(CXXFLAGS) $< -o $@
persistent: persistent.cpp Makefile
$(MPICXX) $(CXXFLAGS) $< -o $@

View File

@@ -26,6 +26,11 @@ If any tests fails, you can re-run them individually.
Execute any binary you want using `mpirun`, or whatever is appropriate for your platform.
## Run Microbenchmarks
- `persistent` (`persistent.cpp`) ping-pong time for persistent communication.
## Notes on specific platforms
Some Open MPIs use `long long` for their datatypes, which means we can't support ANSI C++ (`-ansi`).

9
ascicgpu030.sh Executable file
View File

@@ -0,0 +1,9 @@
#! /bin/bash
yes | module clear -s
. $HOME/repos/Trilinos/cmake/std/atdm/load-env.sh Volta70-cuda-static-opt-rdc
module unload sems-openmpi
module load sems-openmpi/4.0.5 # needed for the --host syntax in mpirun
mpirun -np 8 -host ascicgpu030:4,ascicgpu032:4 \
./main-wrapper.sh

5
main-wrapper.sh Executable file
View File

@@ -0,0 +1,5 @@
#! /bin/bash
which mpirun
./main

156
persistent.cpp Normal file
View File

@@ -0,0 +1,156 @@
#include <mpi.h>
#include <cstdio>
#include <vector>
#include <sys/mman.h>
#include <errno.h>
const float sample_target = 200e-6;
struct Sample {
double raw;
double norm;
};
static Sample get_sample(int perSample, MPI_Request *sreq, MPI_Request *rreq, int rank, MPI_Comm comm) {
Sample sample;
MPI_Barrier(comm);
double start = MPI_Wtime();
for (int i = 0; i < perSample; ++i) {
if (0 == rank) {
MPI_Start(sreq);
MPI_Wait(sreq, MPI_STATUS_IGNORE);
MPI_Start(rreq);
MPI_Wait(rreq, MPI_STATUS_IGNORE);
} else if (1 == rank) {
MPI_Start(rreq);
MPI_Wait(rreq, MPI_STATUS_IGNORE);
MPI_Start(sreq);
MPI_Wait(sreq, MPI_STATUS_IGNORE);
}
}
double stop = MPI_Wtime();
sample.raw = stop-start;
sample.norm = sample.raw / perSample;
return sample;
}
int main(int argc, char **argv) {
// Initialize the MPI environment
MPI_Init(&argc, &argv);
// Get the number of processes
int size, rank;
MPI_Comm_size(MPI_COMM_WORLD, &size);
MPI_Comm_rank(MPI_COMM_WORLD, &rank);
if (size < 2) {
printf("need at least 2 ranks!\n");
exit(1);
}
int src = (rank + 1) % 2;
int dst = (rank + 1) % 2;
int tag = 0;
MPI_Request sreq, rreq;
int numIters = 100;
std::vector<size_t> sweep{
1,
64,
128,
256,
512,
1 * 1024,
2 * 1024,
4 * 1024,
8 * 1024,
16 * 1024,
32 * 1024,
64 * 1024,
128 * 1024,
256 * 1024,
512 * 1024,
1 * 1024 * 1024,
2 * 1024 * 1024,
4 * 1024 * 1024,
8 * 1024 * 1024,
16 * 1024 * 1024,
32 * 1024 * 1024,
64 * 1024 * 1024,
128 * 1024 * 1024,
256 * 1024 * 1024,
};
if (0 == rank) {
printf("bytes,min,max,avg,med\n");
}
for (size_t bytes : sweep) {
std::vector<double> samples(numIters);
char *buf = new char[bytes];
if (mlock(buf, bytes)) {
perror("error locking memory");
}
MPI_Send_init(buf, bytes, MPI_BYTE, dst, tag, MPI_COMM_WORLD, &sreq);
MPI_Recv_init(buf, bytes, MPI_BYTE, src, tag, MPI_COMM_WORLD, &rreq);
// try to reach 200us / sample
int perSample = 1;
for (int i = 0; i < 10; ++i) {
double sample = get_sample(perSample, &sreq, &rreq, rank, MPI_COMM_WORLD).raw;
// estimate number of measurements per sample
int guess = sample_target / sample + /*rounding*/0.5;
// close half the distance to this estimate
perSample += (guess - perSample) * 0.5;
if (perSample < 1) perSample = 1;
MPI_Bcast(&perSample, 1, MPI_INT, 0, MPI_COMM_WORLD);
}
if (0 == rank) {
fprintf(stderr, "sample averaged over %d iterations\n", perSample);
}
for (int i = 0; i < numIters; ++i) {
samples[i] = get_sample(perSample, &sreq, &rreq, rank, MPI_COMM_WORLD).norm;
}
// each sample is the max time observed
MPI_Allreduce(MPI_IN_PLACE, samples.data(), numIters, MPI_DOUBLE, MPI_MAX, MPI_COMM_WORLD);
// bubble sort
bool changed = true;
while (changed) {
changed = false;
for (int i = 0; i < numIters - 1; ++i) {
if (samples[i] > samples[i+1]) {
double tmp = samples[i+1];
samples[i+1] = samples[i];
samples[i] = tmp;
changed = true;
}
}
}
// average
double avg = 0;
for (int i = 0; i < numIters; ++i) {
avg += samples[i];
}
avg /= numIters;
if (0 == rank) {
printf("%lu,%e,%e,%e,%e\n", bytes, samples[0], samples[numIters-1], avg, samples[numIters/2]);
}
if (munlock(buf, bytes)) {
perror("error unlocking memory");
}
delete[] buf;
}
MPI_Finalize();
return 0;
}