- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
using (new MPI.Environment(ref args))
{
//Эта программа для MPI. Внешний алгоритм
System.Diagnostics.Stopwatch stopwatch = new System.Diagnostics.Stopwatch();
stopwatch.Start();
Intracommunicator world = Communicator.world;
if (world.Rank == 0)
{
RightRectangleSubDomain(horror, world);
LeftRingSubdomain(dolor, world);
world.Barrier();
SendArthas(dolor, world);
RecvKelthuzad(kelthuzad, world);
}
if (world.Rank == 1)
{
LeftRectangleSubDomain(pavor, world);
RightRingSubdomain(tristicia, world);
world.Barrier();
SendKelthuzad(tristicia, world);
RecvArthas(arthas, world);
}
stopwatch.Stop();
Console.WriteLine("Elapsed time: {0}", stopwatch.ElapsedMilliseconds);
}
Очень сильно напугала лабораторная, что отразилось на названиях переменных. Да и сам файл был назван MPITenebris.
Комментарии (0) RSS
Добавить комментарий