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 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148
|
// SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
// SPDX-License-Identifier: BSD-3-Clause
// This test exercises xdmf3 reading and writing in parallel.
//
#include <vtk_mpi.h>
#include "vtkMPICommunicator.h"
#include "vtkMPIController.h"
#include "vtkNew.h"
#include "vtkObjectFactory.h"
#include "vtkProcess.h"
#include "vtkSmartPointer.h"
#include "vtkTestUtilities.h"
#include "vtkTesting.h"
#include "vtkXdmf3Reader.h"
#include "vtkXdmf3Writer.h"
#include <vtksys/SystemTools.hxx>
class MyProcess : public vtkProcess
{
public:
static MyProcess* New();
vtkTypeMacro(MyProcess, vtkProcess);
void Execute() override;
void SetArgs(int argc, char* argv[], const std::string& ifname, const std::string& ofname)
{
this->Argc = argc;
this->Argv = argv;
this->InFileName = ifname;
this->OutFileName = ofname;
}
void CreatePipeline()
{
int num_procs = this->Controller->GetNumberOfProcesses();
int my_id = this->Controller->GetLocalProcessId();
this->Reader = vtkXdmf3Reader::New();
this->Reader->SetFileName(this->InFileName.c_str());
if (my_id == 0)
{
cerr << my_id << "/" << num_procs << endl;
cerr << "IFILE " << this->InFileName << endl;
cerr << "OFILE " << this->OutFileName << endl;
}
this->Writer = vtkXdmf3Writer::New();
this->Writer->SetFileName(this->OutFileName.c_str());
this->Writer->SetInputConnection(this->Reader->GetOutputPort());
}
protected:
MyProcess()
{
this->Argc = 0;
this->Argv = nullptr;
}
int Argc;
char** Argv;
std::string InFileName;
std::string OutFileName;
vtkXdmf3Reader* Reader;
vtkXdmf3Writer* Writer;
};
vtkStandardNewMacro(MyProcess);
void MyProcess::Execute()
{
int proc = this->Controller->GetLocalProcessId();
int numprocs = this->Controller->GetNumberOfProcesses();
this->Controller->Barrier();
this->CreatePipeline();
this->Controller->Barrier();
this->Reader->UpdatePiece(proc, numprocs, 0);
this->Writer->Write();
this->Reader->Delete();
this->Writer->Delete();
this->ReturnValue = 1;
}
int TestXdmf3Parallel(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.
vtkNew<vtkMPIController> contr;
contr->Initialize(&argc, &argv, 1);
int numProcs = contr->GetNumberOfProcesses();
if (numProcs < 2)
{
cout << "This test requires at least 2 processes" << endl;
return EXIT_FAILURE;
}
vtkMultiProcessController::SetGlobalController(contr);
vtkTesting* testHelper = vtkTesting::New();
testHelper->AddArguments(argc, const_cast<const char**>(argv));
std::string datadir = testHelper->GetDataRoot();
std::string ifile = datadir + "/Data/XDMF/Iron/Iron_Protein.ImageData.xmf";
std::string tempdir = testHelper->GetTempDirectory();
tempdir = tempdir + "/XDMF";
vtksys::SystemTools::MakeDirectory(tempdir.c_str());
std::string ofile = tempdir + "/Iron_Protein.ImageData.xmf";
testHelper->Delete();
// allow caller to use something else
for (int i = 0; i < argc; i++)
{
if (!strncmp(argv[i], "--file=", 11))
{
ifile = argv[i] + 11;
}
}
MyProcess* p = MyProcess::New();
p->SetArgs(argc, argv, ifile, ofile);
contr->SetSingleProcessObject(p);
contr->SingleMethodExecute();
int retVal = p->GetReturnValue();
p->Delete();
contr->Finalize();
vtkMultiProcessController::SetGlobalController(nullptr);
if (retVal)
{
// test passed, remove the files we wrote
vtksys::SystemTools::RemoveADirectory(tempdir);
}
return !retVal;
}
|