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

📄 nxtval_free.c

📁 The example for Boor USING MPI2
💻 C
字号:
void MPE_Counter_free( MPI_Win *counter_win ){    int counter_flag, *counter_mem, flag, *myval_p;    MPI_Win_get_attr( *counter_win, MPI_WIN_BASE, 		      &counter_mem, &counter_flag );    MPI_Win_get_attr( *counter_win, MPE_COUNTER_KEYVAL,                       &myval_p, &flag );        /* Free is collective and will not return until all proceeses        have called it */    MPI_Win_free( counter_win );    /* Free the memory used by the counter and local value */    if (counter_flag && counter_mem) 	MPI_Free_mem( counter_mem );    free( myval_p );}

⌨️ 快捷键说明

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