using System;
using MPI;
class MPIHello
{
static void Main(string[] args)
{
using (new MPI.Environment(ref args))
{
Intracommunicator comm = Communicator.world;
if (comm.Rank == 0)
{
//Send its rank to the next neighbor
comm.Send(comm.Rank, 1, 0);
//Receive message
int msg = comm.Receive<int>(comm.Size, 0);
Console.WriteLine("I am MPI process " + comm.Rank + " of " + comm.Size + ", on my left is " + msg);
}
else
{
//Receive message
int msg = comm.Receive<int>(comm.Rank - 1, 0);
Console.WriteLine("I am MPI process " + comm.Rank + " of " + comm.Size + ", on my left is " + msg);
//Send message to next neighbor
comm.Send(comm.Rank, (comm.Rank + 1) % comm.Size, 0);
}
}
}
}
これは私が行ったC#コーディングですが、コマンドプロンプトで実行すると、このエラーが発生します。「C:\ MPIHello \ bin \ Debug」は、内部または外部コマンド、操作可能なプログラム、またはバッチとして認識されません。ファイル...何が問題なのかわかりますか?