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

📄 init.c

📁 mpi并行计算的c++代码 可用vc或gcc编译通过 可以用来搭建并行计算试验环境
💻 C
字号:
/* -*- Mode: C; c-basic-offset:4 ; -*- *//*  $Id: init.c,v 1.28 2004/11/29 17:04:40 toonen Exp $ * *  (C) 2001 by Argonne National Laboratory. *      See COPYRIGHT in top-level directory. */#include "mpiimpl.h"#include "mpi_init.h"/* -- Begin Profiling Symbol Block for routine MPI_Init */#if defined(HAVE_PRAGMA_WEAK)#pragma weak MPI_Init = PMPI_Init#elif defined(HAVE_PRAGMA_HP_SEC_DEF)#pragma _HP_SECONDARY_DEF PMPI_Init  MPI_Init#elif defined(HAVE_PRAGMA_CRI_DUP)#pragma _CRI duplicate MPI_Init as PMPI_Init#endif/* -- End Profiling Symbol Block *//* Define MPICH_MPI_FROM_PMPI if weak symbols are not supported to build   the MPI routines */#ifndef MPICH_MPI_FROM_PMPI#define MPI_Init PMPI_Init/* Fortran logical values. extern'd in mpiimpl.h *//* MPI_Fint MPIR_F_TRUE, MPIR_F_FALSE; *//* Any internal routines can go here.  Make them static if possible */#endif#undef FUNCNAME#define FUNCNAME MPI_Init/*@   MPI_Init - Initialize the MPI execution environment   Input Parameters:+  argc - Pointer to the number of arguments -  argv - Pointer to the argument vectorThread and Signal Safety:This routine must be called by one thread only.  That thread is calledthe `main thread` and must be the thread that calls 'MPI_Finalize'.Notes:   The MPI standard does not say what a program can do before an 'MPI_INIT' or   after an 'MPI_FINALIZE'.  In the MPICH implementation, you should do   as little as possible.  In particular, avoid anything that changes the   external state of the program, such as opening files, reading standard   input or writing to standard output.Notes for Fortran:The Fortran binding for 'MPI_Init' has only the error return.vb    subroutine MPI_INIT( ierr )    integer ierr.ve.N Errors.N MPI_SUCCESS.N MPI_ERR_INIT.seealso: MPI_Init_thread, MPI_Finalize@*/int MPI_Init( int *argc, char ***argv ){    static const char FCNAME[] = "MPI_Init";    int mpi_errno = MPI_SUCCESS;    MPID_MPI_INIT_STATE_DECL(MPID_STATE_MPI_INIT);    MPID_CS_INITIALIZE();    MPID_CS_ENTER();    MPID_MPI_INIT_FUNC_ENTER(MPID_STATE_MPI_INIT);#   ifdef HAVE_ERROR_CHECKING    {        MPID_BEGIN_ERROR_CHECKS;        {            if (MPIR_Process.initialized != MPICH_PRE_INIT) {                mpi_errno = MPIR_Err_create_code( MPI_SUCCESS, MPIR_ERR_RECOVERABLE, FCNAME, __LINE__, MPI_ERR_OTHER,						  "**inittwice", NULL );	    }            if (mpi_errno) goto fn_fail;        }        MPID_END_ERROR_CHECKS;    }#   endif /* HAVE_ERROR_CHECKING */    /* ... body of routine ... */        mpi_errno = MPIR_Init_thread( argc, argv, MPI_THREAD_SINGLE, (int *)0 );    if (mpi_errno != MPI_SUCCESS) goto fn_fail;    /* ... end of body of routine ... */        MPID_MPI_INIT_FUNC_EXIT(MPID_STATE_MPI_INIT);    MPID_CS_EXIT();    return mpi_errno;      fn_fail:    /* --BEGIN ERROR HANDLING-- */#   ifdef HAVE_ERROR_HANDLING    {	mpi_errno = MPIR_Err_create_code(	    mpi_errno, MPIR_ERR_RECOVERABLE, FCNAME, __LINE__, MPI_ERR_OTHER, "**mpi_init", "**mpi_init %p %p", argc, argv);    }#   endif    mpi_errno = MPIR_Err_return_comm( 0, FCNAME, mpi_errno );    MPID_CS_EXIT();    MPID_CS_FINALIZE();    return mpi_errno;    /* --END ERROR HANDLING-- */}

⌨️ 快捷键说明

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