1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131
|
// SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
// SPDX-License-Identifier: BSD-3-Clause
// This test covers the vtkProcess abstract class.
#include <vtk_mpi.h>
#include "vtkMPIController.h"
#include "vtkObjectFactory.h"
#include "vtkProcess.h"
namespace
{
class MyProcess : public vtkProcess
{
public:
static MyProcess* New();
vtkTypeMacro(MyProcess, vtkProcess);
void Execute() override;
void SetArgs(int anArgc, char* anArgv[]);
protected:
MyProcess();
int Argc;
char** Argv;
};
vtkStandardNewMacro(MyProcess);
MyProcess::MyProcess()
{
this->Argc = 0;
this->Argv = nullptr;
}
void MyProcess::SetArgs(int anArgc, char* anArgv[])
{
this->Argc = anArgc;
this->Argv = anArgv;
}
void MyProcess::Execute()
{
// multiprocess logic
int numProcs = this->Controller->GetNumberOfProcesses();
int me = this->Controller->GetLocalProcessId();
cout << "numProcs=" << numProcs << " me=" << me << endl;
cout << "executable=" << this->Argv[0] << endl;
cout << "argc=" << this->Argc << endl;
const int MY_RETURN_VALUE_MESSAGE = 0x11;
if (me == 0)
{
// root node
this->ReturnValue = 0;
int i = 1;
while (i < numProcs)
{
this->Controller->Send(&this->ReturnValue, 1, i, MY_RETURN_VALUE_MESSAGE);
++i;
}
}
else
{
// satellites
this->Controller->Receive(&this->ReturnValue, 1, 0, MY_RETURN_VALUE_MESSAGE);
}
}
}
int TestProcess(int argc, char* argv[])
{
// This is here to avoid false leak messages from vtkDebugLeaks when
// using mpich. It appears that the root process which spawns all the
// main processes waits in MPI_Init() and calls exit() when
// the others are done, causing apparent memory leaks for any objects
// created before MPI_Init().
MPI_Init(&argc, &argv);
// Note that this will create a vtkMPIController if MPI
// is configured, vtkThreadedController otherwise.
vtkMPIController* c = vtkMPIController::New();
c->Initialize(&argc, &argv, 1);
int retVal = 1;
vtkMultiProcessController::SetGlobalController(c);
int numProcs = c->GetNumberOfProcesses();
int me = c->GetLocalProcessId();
if (numProcs != 2)
{
if (me == 0)
{
cout << "DistributedData test requires 2 processes" << endl;
}
c->Delete();
return retVal;
}
if (!c->IsA("vtkMPIController"))
{
if (me == 0)
{
cout << "TestProcess test requires MPI" << endl;
}
c->Delete();
return retVal;
}
MyProcess* p = MyProcess::New();
p->SetArgs(argc, argv);
c->SetSingleProcessObject(p);
c->SingleMethodExecute();
retVal = p->GetReturnValue();
p->Delete();
c->Finalize();
c->Delete();
return retVal;
}
|