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

📄 mpitest.h

📁 刚才是说明 现在是安装程序在 LINUX环境下进行编程的MPICH安装文件
💻 H
字号:
#ifndef MTEST_INCLUDED#define MTEST_INCLUDED/* * Init and finalize test  */void MTest_Init( int *, char ***argv );void MTest_Finalize( int );/* * This structure contains the information used to test datatypes */typedef struct _MTest_Datatype {    MPI_Datatype datatype;    void *(*InitBuf)( struct _MTest_Datatype * );    void *(*FreeBuf)( struct _MTest_Datatype * );    void *(*CheckBuf)( struct _MTest_Datatype * );    void *buf;    int  count;} MTest_Datatype;int MTest_Check_recv( MPI_Status *, MTest_Datatype * );int MTest_Get_datatypes( MTest_Datatype *, MTest_Datatype * );void MTest_Reset_datatypes( void );#endif

⌨️ 快捷键说明

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