⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 commname.c

📁 mpi并行计算的c++代码 可用vc或gcc编译通过 可以用来搭建并行计算试验环境
💻 C
字号:
/* -*- Mode: C; c-basic-offset:4 ; -*- *//* * *  (C) 2001 by Argonne National Laboratory. *      See COPYRIGHT in top-level directory. */#include "mpi.h"#include <stdio.h>#include <stdlib.h>#include "mpitest.h"#include "mpitestconf.h"#ifdef HAVE_STRING_H#include <string.h>#endifint main( int argc, char *argv[] ){    int errs = 0;    MPI_Comm comm;    int cnt, rlen;    char name[MPI_MAX_OBJECT_NAME], nameout[MPI_MAX_OBJECT_NAME];    MTest_Init( &argc, &argv );    /* Check world and self firt */    nameout[0] = 0;    MPI_Comm_get_name( MPI_COMM_WORLD, nameout, &rlen );    if (strcmp(nameout,"MPI_COMM_WORLD")) {	errs++;	printf( "Name of comm world is %s, should be MPI_COMM_WORLD\n", 		nameout );    }    nameout[0] = 0;    MPI_Comm_get_name( MPI_COMM_SELF, nameout, &rlen );    if (strcmp(nameout,"MPI_COMM_SELF")) {	errs++;	printf( "Name of comm self is %s, should be MPI_COMM_SELF\n", 		nameout );    }    /* Now, handle other communicators, including world/self */    cnt = 0;    while (MTestGetComm( &comm, 1 )) {	if (comm == MPI_COMM_NULL) continue;    	sprintf( name, "comm-%d", cnt );	cnt++;	MPI_Comm_set_name( comm, name );	nameout[0] = 0;	MPI_Comm_get_name( comm, nameout, &rlen );	if (strcmp( name, nameout )) {	    errs++;	    printf( "Unexpected name, was %s but should be %s\n",		    nameout, name );	}		MTestFreeComm( &comm );    }    MTest_Finalize( errs );    MPI_Finalize();    return 0;}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -