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

📄 mpioimpl.h

📁 mpi并行计算的c++代码 可用vc或gcc编译通过 可以用来搭建并行计算试验环境
💻 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"#ifdef ROMIO_INSIDE_MPICH2#include "mpiimpl.h"#include "mpiimplthread.h"#else/* 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 MPID_CS_EXIT()#define MPID_CS_ENTER()#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/* 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 + -