申し訳ありませんが、間違いはありますが、うまくできませんでした。mpiのプロセッサ数が間違っています
#include <stdio.h>
#include <mpi.h>
int main (argc, argv)
int argc;
char *argv[];
{
int rank, size;
MPI_Init (&argc, &argv); /* starts MPI */
MPI_Comm_rank (MPI_COMM_WORLD, &rank); /* get current process id */
MPI_Comm_size (MPI_COMM_WORLD, &size); /* get number of processes */
printf("Hello world from process %d of %d\n", rank, size);
MPI_Finalize();
return 0;
}
そして:
> mpicc -o hello_world_c hello_world.c
> mpirun -np 4 hello_world_c
しかしリターン:
私は世界ハロー簡単なMPIをコンパイルしてい
Hello world from process 0 of 1
Hello world from process 0 of 1
Hello world from process 0 of 1
Hello world from process 0 of 1
しかし、私のコンピュータは4つのコアとコアi7のです。そして、すべては大丈夫、すなわち、ようです。 cat/proc/cpuinfoには4つのプロセッサーが表示されます
何が起こっていますか? ありがとうございます!!!!
が見えないコンパイルして実行
をインストールします。どのMPIライブラリをインストールしましたか?どのようにインストールしましたか? –
[MPI \ _Rankの可能な重複はすべてのプロセスのために同じプロセス番号を返します](http://stackoverflow.com/questions/20287564/mpi-rank-return-same-process-number-for-all-process) –