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

📄 timertest.c

📁 MPICH是MPI的重要研究,提供了一系列的接口函数,为并行计算的实现提供了编程环境.
💻 C
字号:
#include <stdio.h>#include <stdlib.h>#include "mpi.h"#include "test.h"int main( int argc, char **argv ){    double t1, t2;    double tick;    int    i;    MPI_Init( &argc, &argv );    t1 = MPI_Wtime();    t2 = MPI_Wtime();    fprintf( stdout, "Two successive calls to MPI_Wtime gave: (%f) (%f)\n", 		t1, t2 );    fprintf( stdout, "Five approximations to one second:\n");    for (i = 0; i < 5; i++)    {	t1 = MPI_Wtime();	sleep(1);	t2 = MPI_Wtime();	fprintf( stdout, "%f seconds\n", t2 - t1 );    }     tick = MPI_Wtick();    fprintf( stdout, "MPI_Wtick gave: (%10.8f)\n", tick );    MPI_Finalize( );    return 0;}

⌨️ 快捷键说明

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