Arquivos
mpich/test/mpi/threads/pt2pt/multisend2.c
T
Shintaro Iwasaki 5ef6367f73 use more inclusive terms in the code
Specifically, this patch makes the following changes.
build scripts:
- master_top_srcdir -> main_top_srcdir
Git:
- "master" -> "main" branch (variable names and comments)
global structures and variables:
- MPIR_ThreadInfo.master_thread -> MPIR_ThreadInfo.main_thread
- struct PMIMaster -> struct PMIMain
- PMI2_Connect_comm_t.isMaster -> PMI2_Connect_comm_t.isMain
names of tests:
- spawntest_master -> spawntest_parent
- taskmaster -> taskmanager
- th_taskmaster -> th_taskmanager`
comments and names of temporary/local variables:
- master -> main, parent, server, ...
- slave -> child, worker, client, ...
2020-06-30 15:02:48 -05:00

107 linhas
2.8 KiB
C

/*
* Copyright (C) by Argonne National Laboratory
* See COPYRIGHT in top-level directory
*/
/*
* Run concurrent sends to different target processes. Stresses an
* implementation that permits concurrent sends to different targets.
*
* By turning on verbose output, some simple performance data will be output.
*/
#include <stdio.h>
#include <stdlib.h>
#include "mpi.h"
#include "mpitest.h"
#include "mpithreadtest.h"
/* This is the main test routine */
#define MAX_CNT 660000
#define MAX_LOOP 200
static int nthreads = -1;
MTEST_THREAD_RETURN_TYPE run_test_send(void *arg);
MTEST_THREAD_RETURN_TYPE run_test_send(void *arg)
{
int cnt, j, *buf, tag;
int thread_num = (int) (long) arg;
double t;
for (cnt = 1, tag = 1; cnt < MAX_CNT; cnt = 2 * cnt, tag++) {
buf = (int *) malloc(cnt * sizeof(int));
MTEST_VG_MEM_INIT(buf, cnt * sizeof(int));
/* Wait for all senders to be ready */
MTest_thread_barrier(nthreads);
t = MPI_Wtime();
for (j = 0; j < MAX_LOOP; j++)
MPI_Send(buf, cnt, MPI_INT, thread_num, tag, MPI_COMM_WORLD);
t = MPI_Wtime() - t;
free(buf);
if (thread_num == 1)
MTestPrintfMsg(1, "buf size %d: time %f\n", cnt, t / MAX_LOOP);
}
return (MTEST_THREAD_RETURN_TYPE) NULL;
}
void run_test_recv(void);
void run_test_recv(void)
{
int cnt, j, *buf, tag;
MPI_Status status;
double t;
for (cnt = 1, tag = 1; cnt < MAX_CNT; cnt = 2 * cnt, tag++) {
buf = (int *) malloc(cnt * sizeof(int));
MTEST_VG_MEM_INIT(buf, cnt * sizeof(int));
t = MPI_Wtime();
for (j = 0; j < MAX_LOOP; j++)
MPI_Recv(buf, cnt, MPI_INT, 0, tag, MPI_COMM_WORLD, &status);
t = MPI_Wtime() - t;
free(buf);
}
}
int main(int argc, char **argv)
{
int i, pmode, nprocs, rank;
int errs = 0, err;
MTest_Init_thread(&argc, &argv, MPI_THREAD_MULTIPLE, &pmode);
if (pmode != MPI_THREAD_MULTIPLE) {
fprintf(stderr, "Thread Multiple not supported by the MPI implementation\n");
MPI_Abort(MPI_COMM_WORLD, -1);
}
MPI_Comm_size(MPI_COMM_WORLD, &nprocs);
MPI_Comm_rank(MPI_COMM_WORLD, &rank);
if (nprocs < 2) {
fprintf(stderr, "Need at least two processes\n");
MPI_Abort(MPI_COMM_WORLD, 1);
}
MPI_Barrier(MPI_COMM_WORLD);
if (rank == 0) {
nthreads = nprocs - 1;
err = MTest_thread_barrier_init();
if (err) {
fprintf(stderr, "Could not create thread barrier\n");
MPI_Abort(MPI_COMM_WORLD, 1);
}
for (i = 1; i < nprocs; i++)
MTest_Start_thread(run_test_send, (void *) (long) i);
MTest_Join_threads();
MTest_thread_barrier_free();
} else {
run_test_recv();
}
MTest_Finalize(errs);
return MTestReturnValue(errs);
}