MPI—HelloWorld 迷南。 2022-07-14 20:48 170阅读 0赞 // MPI1.cpp : 定义控制台应用程序的入口点。 // #include "stdafx.h" #include "mpi.h" int main(int argc, char * argv[]) { int rank,size; MPI_Init(&argc,&argv); MPI_Comm_rank(MPI_COMM_WORLD,&rank); MPI_Comm_size(MPI_COMM_WORLD,&size); printf("Hello world from process %d of%d\n",rank,size); MPI_Finalize(); return 0; } 运行: ![Center][] 运行结果: ![Center 1][] [Center]: /images/20220715/58a7189113744ed8905d2798ac5b367a.png [Center 1]: /images/20220715/74bf1b1f8e8c47d3b81429a4c67e604a.png
还没有评论,来说两句吧...