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

📄 mpid_finalize.c

📁 fortran并行计算包
💻 C
字号:
/*  (C)Copyright IBM Corp.  2007, 2008  *//** * \file src/misc/mpid_finalize.c * \brief Normal job termination code */#include "mpidimpl.h"#include "pmi.h"/** * \brief Shut down the system * * At this time, no attempt is made to free memory being used for MPI structures. * \return MPI_SUCCESS*/int MPID_Finalize(){  PMPI_Barrier(MPI_COMM_WORLD);  /* ------------------------- */  /* shutdown the statistics   */  /* ------------------------- */  MPIDI_Statistics_finalize();  /* ------------------------- */  /* shutdown request queues   */  /* ------------------------- */  MPIDI_Recvq_finalize();  return MPI_SUCCESS;}

⌨️ 快捷键说明

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