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

📄 mpioimpl.h

📁 fortran并行计算包
💻 H
字号:
/* -*- Mode: C; c-basic-offset:4 ; -*- *//*  * *   Copyright (C) 1997 University of Chicago.  *   See COPYRIGHT notice in top-level directory. *//* header file for MPI-IO implementation. not intended to be   user-visible */ #ifndef MPIOIMPL_INCLUDE#define MPIOIMPL_INCLUDE#include "adio.h"#include "mpio.h"/* FIXME: We should be more restricted in what we include from MPICH2   into ROMIO */#ifdef ROMIO_INSIDE_MPICH2#include "mpiimpl.h"#include "mpiimplthread.h"/* Use the routine versions of the nest macros, to avoid requiring    access to the MPIR_Process and MPIR_Thread structures */#ifdef MPIR_Nest_incr#undef MPIR_Nest_incr#undef MPIR_Nest_decr#endifvoid MPIR_Nest_incr_export(void);void MPIR_Nest_decr_export(void);#define MPIR_Nest_incr MPIR_Nest_incr_export#define MPIR_Nest_decr MPIR_Nest_decr_export#else /* not ROMIO_INSIDE_MPICH2 *//* Any MPI implementation that wishes to follow the thread-safety and   error reporting features provided by MPICH2 must implement these    four functions.  Defining these as empty should not change the behavior    of correct programs */#define MPIU_THREAD_SINGLE_CS_ENTER(_msg)#define MPIU_THREAD_SINGLE_CS_EXIT(_msg)#define MPIR_Nest_incr()#define MPIR_Nest_decr()#ifdef HAVE_WINDOWS_H#define MPIU_UNREFERENCED_ARG(a) a#else#define MPIU_UNREFERENCED_ARG(a)#endif#endif /* ROMIO_INSIDE_MPICH2 *//* info is a linked list of these structures */struct MPIR_Info {    int cookie;    char *key, *value;    struct MPIR_Info *next;};#define MPIR_INFO_COOKIE 5835657MPI_Delete_function ADIOI_End_call;#include "mpioprof.h"#ifdef MPI_hpux#  include "mpioinst.h"#endif /* MPI_hpux */#endif

⌨️ 快捷键说明

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