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

📄 md_timer_mpi.c

📁 并行解法器,功能强大
💻 C
字号:
/*==================================================================== * ------------------------ * | CVS File Information | * ------------------------ * * $RCSfile: md_timer_mpi.c,v $ * * $Author: tuminaro $ * * $Date: 1999/09/30 17:05:01 $ * * $Revision: 5.2 $ * * $Name:  $ *====================================================================*/#ifndef lintstatic char *cvs_timerint_id =  "$Id: md_timer_mpi.c,v 5.2 1999/09/30 17:05:01 tuminaro Exp $";#endif/******************************************************************************* * Copyright 1995, Sandia Corporation.  The United States Government retains a * * nonexclusive license in this software as prescribed in AL 88-1 and AL 91-7. * * Export of this program may require a license from the United States         * * Government.                                                                 * ******************************************************************************/#ifdef MPI#include <mpi.h>#endif/* MPI timer */extern double second(void);double second(void){#ifdef MPI  return (MPI_Wtime());#else   return (0.0);#endif} /* second */

⌨️ 快捷键说明

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