Newer
Older
#ifndef ALGORITHMMPITEST_H_
#define ALGORITHMMPITEST_H_
#include <cxxtest/TestSuite.h>
#include "MantidAPI/Algorithm.h"
#include "MantidAPI/HistogramValidator.h"
#include "MantidKernel/CompositeValidator.h"
#include "MantidAPI/AnalysisDataService.h"
#include "MantidKernel/Property.h"
#include "MantidAPI/AlgorithmFactory.h"
#include "MantidTestHelpers/FakeObjects.h"
#include "MantidAPI/WorkspaceProperty.h"
#include "MantidAPI/FrameworkManager.h"
#include "MantidParallel/Communicator.h"
#ifdef MPI_EXPERIMENTAL
#include "MantidParallel/ParallelRunner.h"
#endif
using namespace Mantid::Kernel;
using namespace Mantid::API;
class FakeWorkspaceA : public WorkspaceTester {
public:
using WorkspaceTester::WorkspaceTester;
const std::string id() const override { return "FakeWorkspaceA"; }
private:
FakeWorkspaceA *doClone() const override { return new FakeWorkspaceA(*this); }
FakeWorkspaceA *doCloneEmpty() const override {
return new FakeWorkspaceA(storageMode());
}
};
class FakeWorkspaceB : public WorkspaceTester {
public:
using WorkspaceTester::WorkspaceTester;
const std::string id() const override { return "FakeWorkspaceB"; }
private:
FakeWorkspaceB *doClone() const override { return new FakeWorkspaceB(*this); }
FakeWorkspaceB *doCloneEmpty() const override {
return new FakeWorkspaceB(storageMode());
}
class FakeAlgNoParallelism : public Algorithm {
const std::string name() const override { return "FakeAlgNoParallelism"; }
int version() const override { return 1; }
const std::string category() const override { return ""; }
const std::string summary() const override { return ""; }
void init() override {
declareProperty(make_unique<WorkspaceProperty<>>("InputWorkspace", "",
Direction::Input));
}
void exec() override {}
};
class FakeAlgTestGetInputWorkspaceStorageModes : public Algorithm {
public:
const std::string name() const override {
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
return "FakeAlgTestGetInputWorkspaceStorageModes";
}
int version() const override { return 1; }
const std::string category() const override { return ""; }
const std::string summary() const override { return ""; }
void init() override {
declareProperty(Kernel::make_unique<WorkspaceProperty<>>(
"Input1", "", Kernel::Direction::Input));
declareProperty(Kernel::make_unique<WorkspaceProperty<>>(
"Input2", "", Kernel::Direction::Input, PropertyMode::Optional));
declareProperty(Kernel::make_unique<WorkspaceProperty<>>(
"Input3", "", Kernel::Direction::Input, PropertyMode::Optional));
declareProperty(make_unique<WorkspaceProperty<Workspace>>(
"InOut1", "", Direction::InOut));
declareProperty(make_unique<WorkspaceProperty<Workspace>>(
"InOut2", "", Direction::InOut, PropertyMode::Optional));
declareProperty(make_unique<WorkspaceProperty<Workspace>>(
"InOut3", "", Direction::InOut, PropertyMode::Optional));
}
void exec() override {}
protected:
Parallel::ExecutionMode getParallelExecutionMode(
const std::map<std::string, Parallel::StorageMode> &storageModes)
const override {
// The result of getInputWorkspaceStorageModes is passed to this virtual
// method, so we can test it here. Only initialized workspaces are part of
// the map.
TS_ASSERT_EQUALS(storageModes.size(), 4);
TS_ASSERT_EQUALS(storageModes.count("Input1"), 1);
TS_ASSERT_EQUALS(storageModes.count("Input2"), 1);
TS_ASSERT_EQUALS(storageModes.count("InOut1"), 1);
TS_ASSERT_EQUALS(storageModes.count("InOut2"), 1);
return Parallel::ExecutionMode::Identical;
}
};
class FakeAlgBadGetParallelExecutionMode : public Algorithm {
public:
const std::string name() const override {
return "FakeAlgBadGetParallelExecutionMode ";
}
int version() const override { return 1; }
const std::string category() const override { return ""; }
const std::string summary() const override { return ""; }
void init() override {}
void exec() override {}
protected:
Parallel::ExecutionMode getParallelExecutionMode(
const std::map<std::string, Parallel::StorageMode> &storageModes)
const override {
static_cast<void>(storageModes);
return Parallel::ExecutionMode::Serial;
}
class FakeAlg1To1 : public Algorithm {
const std::string name() const override { return "FakeAlg1To1"; }
int version() const override { return 1; }
const std::string category() const override { return ""; }
const std::string summary() const override { return ""; }
void init() override {
declareProperty(Kernel::make_unique<WorkspaceProperty<>>(
"InputWorkspace", "", Kernel::Direction::Input,
Kernel::make_unique<HistogramValidator>()));
declareProperty(make_unique<WorkspaceProperty<Workspace>>(
"OutputWorkspace", "", Direction::Output));
}
void exec() override {
boost::shared_ptr<MatrixWorkspace> ws = getProperty("InputWorkspace");
setProperty("OutputWorkspace", ws->clone());
}
protected:
Parallel::ExecutionMode getParallelExecutionMode(
const std::map<std::string, Parallel::StorageMode> &storageModes)
const override {
return getCorrespondingExecutionMode(storageModes.at("InputWorkspace"));
}
};
class FakeAlgNTo0 : public Algorithm {
public:
const std::string name() const override { return "FakeAlgNTo0"; }
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
int version() const override { return 1; }
const std::string category() const override { return ""; }
const std::string summary() const override { return ""; }
void init() override {
declareProperty(Kernel::make_unique<WorkspaceProperty<>>(
"InputWorkspace1", "", Kernel::Direction::Input,
Kernel::make_unique<HistogramValidator>()));
declareProperty(Kernel::make_unique<WorkspaceProperty<>>(
"InputWorkspace2", "", Kernel::Direction::Input,
Kernel::make_unique<HistogramValidator>()));
}
void exec() override {
boost::shared_ptr<MatrixWorkspace> ws1 = getProperty("InputWorkspace1");
boost::shared_ptr<MatrixWorkspace> ws2 = getProperty("InputWorkspace2");
}
protected:
Parallel::ExecutionMode getParallelExecutionMode(
const std::map<std::string, Parallel::StorageMode> &storageModes)
const override {
return getCorrespondingExecutionMode(storageModes.at("InputWorkspace1"));
}
};
class FakeAlgNTo1StorageModeFailure : public Algorithm {
public:
const std::string name() const override {
return "FakeAlgNTo1StorageModeFailure";
}
int version() const override { return 1; }
const std::string category() const override { return ""; }
const std::string summary() const override { return ""; }
void init() override {
declareProperty(Kernel::make_unique<WorkspaceProperty<>>(
"InputWorkspace1", "", Kernel::Direction::Input,
Kernel::make_unique<HistogramValidator>()));
declareProperty(Kernel::make_unique<WorkspaceProperty<>>(
"InputWorkspace2", "", Kernel::Direction::Input,
Kernel::make_unique<HistogramValidator>()));
declareProperty(make_unique<WorkspaceProperty<Workspace>>(
"OutputWorkspace", "", Direction::Output));
}
void exec() override {
boost::shared_ptr<MatrixWorkspace> ws1 = getProperty("InputWorkspace1");
boost::shared_ptr<MatrixWorkspace> ws2 = getProperty("InputWorkspace2");
setProperty("OutputWorkspace", ws1->clone());
}
protected:
Parallel::ExecutionMode getParallelExecutionMode(
const std::map<std::string, Parallel::StorageMode> &storageModes)
const override {
return getCorrespondingExecutionMode(storageModes.at("InputWorkspace1"));
}
};
class FakeAlgNTo1 : public FakeAlgNTo1StorageModeFailure {
public:
const std::string name() const override { return "FakeAlgNTo1"; }
protected:
void execNonMaster() override {
// Default implementation only works for 1:1 input->output, so we have to
// provide an alternative implementation here.
boost::shared_ptr<MatrixWorkspace> ws1 = getProperty("InputWorkspace1");
setProperty("OutputWorkspace", ws1->cloneEmpty());
}
};
template <Parallel::StorageMode storageMode>
class FakeAlg0To1 : public Algorithm {
public:
const std::string name() const override {
return "FakeAlg0To1" + Parallel::toString(storageMode);
}
int version() const override { return 1; }
const std::string category() const override { return ""; }
const std::string summary() const override { return ""; }
void init() override {
declareProperty(make_unique<WorkspaceProperty<Workspace>>(
"OutputWorkspace", "", Direction::Output));
}
void exec() override {
auto ws = Kernel::make_unique<FakeWorkspaceA>(storageMode);
ws->initialize(1, 2, 1);
setProperty("OutputWorkspace", std::move(ws));
}
protected:
void execNonMaster() override {
// This method should never create anything that is not
// StorageMode::MasterOnly.
setProperty("OutputWorkspace", Kernel::make_unique<FakeWorkspaceA>(
Parallel::StorageMode::MasterOnly));
}
Parallel::ExecutionMode getParallelExecutionMode(
const std::map<std::string, Parallel::StorageMode> &storageModes)
const override {
static_cast<void>(storageModes);
return getCorrespondingExecutionMode(storageMode);
}
};
template <Parallel::StorageMode storageModeOut>
class FakeAlg1To1StorageModeTransition : public Algorithm {
public:
const std::string name() const override {
return "FakeAlgAnyModeTo" + Parallel::toString(storageModeOut);
}
int version() const override { return 1; }
const std::string category() const override { return ""; }
const std::string summary() const override { return ""; }
void init() override {
declareProperty(Kernel::make_unique<WorkspaceProperty<>>(
"InputWorkspace", "", Kernel::Direction::Input,
Kernel::make_unique<HistogramValidator>()));
declareProperty(make_unique<WorkspaceProperty<Workspace>>(
"OutputWorkspace", "", Direction::Output));
}
void exec() override {
boost::shared_ptr<MatrixWorkspace> ws = getProperty("InputWorkspace");
setProperty("OutputWorkspace",
Kernel::make_unique<FakeWorkspaceA>(storageModeOut));
}
protected:
void execNonMaster() override {
// This method should never create anything that is not
// StorageMode::MasterOnly.
setProperty("OutputWorkspace", Kernel::make_unique<FakeWorkspaceA>(
Parallel::StorageMode::MasterOnly));
}
Parallel::ExecutionMode getParallelExecutionMode(
const std::map<std::string, Parallel::StorageMode> &storageModes)
const override {
static_cast<void>(storageModes);
// ExecutionMode depends on *output* StorageMode.
return getCorrespondingExecutionMode(storageModeOut);
}
};
void runNoParallelism(const Parallel::Communicator &comm) {
for (auto storageMode :
{Parallel::StorageMode::Cloned, Parallel::StorageMode::Distributed,
Parallel::StorageMode::MasterOnly}) {
FakeAlgNoParallelism alg;
alg.setCommunicator(comm);
auto in = boost::make_shared<WorkspaceTester>(storageMode);
alg.initialize();
alg.setProperty("InputWorkspace", in);
if (comm.size() == 1) {
TS_ASSERT_THROWS_NOTHING(alg.execute());
TS_ASSERT(alg.isExecuted());
} else {
TS_ASSERT_THROWS_EQUALS(
alg.execute(), const std::runtime_error &e, std::string(e.what()),
"Algorithm does not support execution with input workspaces of the "
"following storage types: \nInputWorkspace " +
Parallel::toString(storageMode) + "\n.");
}
}
}
void runTestGetInputWorkspaceStorageModes(const Parallel::Communicator &comm) {
FakeAlgTestGetInputWorkspaceStorageModes alg;
alg.setCommunicator(comm);
alg.initialize();
alg.setProperty("Input1", boost::make_shared<WorkspaceTester>());
alg.setProperty("Input2", boost::make_shared<WorkspaceTester>());
std::string wsName1("inout1" + std::to_string(comm.rank()));
std::string wsName2("inout2" + std::to_string(comm.rank()));
auto inout1 = boost::make_shared<WorkspaceTester>();
auto inout2 = boost::make_shared<WorkspaceTester>();
AnalysisDataService::Instance().addOrReplace(wsName1, inout1);
AnalysisDataService::Instance().addOrReplace(wsName2, inout2);
alg.setProperty("InOut1", wsName1);
alg.setProperty("InOut2", wsName2);
TS_ASSERT_THROWS_NOTHING(alg.execute());
TS_ASSERT(alg.isExecuted());
}
void runBadGetParallelExecutionMode(const Parallel::Communicator &comm) {
FakeAlgBadGetParallelExecutionMode alg;
alg.setCommunicator(comm);
alg.initialize();
TS_ASSERT_THROWS_NOTHING(alg.execute());
} else {
TS_ASSERT_THROWS_EQUALS(alg.execute(), const std::runtime_error &e,
std::string(e.what()),
"Parallel::ExecutionMode::Serial is not a valid "
"*parallel* execution mode.");
}
}
void run1To1(const Parallel::Communicator &comm) {
for (auto storageMode :
{Parallel::StorageMode::Cloned, Parallel::StorageMode::Distributed,
Parallel::StorageMode::MasterOnly}) {
alg.setCommunicator(comm);
alg.initialize();
auto in = boost::make_shared<FakeWorkspaceA>(storageMode);
in->initialize(1, 2, 1);
if (storageMode != Parallel::StorageMode::MasterOnly || comm.rank() == 0) {
alg.setProperty("InputWorkspace", in);
} else {
alg.setProperty("InputWorkspace", in->cloneEmpty());
}
// In a true MPI run we could simply use "out", but in the threaded
// fake-runner we have only one ADS, so we have to avoid clashes.
std::string outName("out" + std::to_string(comm.rank()));
alg.setProperty("OutputWorkspace", outName);
TS_ASSERT_THROWS_NOTHING(alg.execute());
auto out = AnalysisDataService::Instance().retrieve(outName);
TS_ASSERT_EQUALS(out->storageMode(), storageMode);
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
TS_ASSERT_EQUALS(out->id(), "FakeWorkspaceA");
}
}
void runNTo0(const Parallel::Communicator &comm) {
for (auto storageMode :
{Parallel::StorageMode::Cloned, Parallel::StorageMode::Distributed,
Parallel::StorageMode::MasterOnly}) {
FakeAlgNTo0 alg;
alg.setCommunicator(comm);
alg.initialize();
auto in1 = boost::make_shared<FakeWorkspaceA>(storageMode);
auto in2 = boost::make_shared<FakeWorkspaceB>(storageMode);
in1->initialize(1, 2, 1);
in2->initialize(1, 2, 1);
if (storageMode != Parallel::StorageMode::MasterOnly || comm.rank() == 0) {
alg.setProperty("InputWorkspace1", in1);
alg.setProperty("InputWorkspace2", in2);
} else {
alg.setProperty("InputWorkspace1", in1->cloneEmpty());
alg.setProperty("InputWorkspace2", in2->cloneEmpty());
}
TS_ASSERT_THROWS_NOTHING(alg.execute());
}
}
void runNTo1StorageModeFailure(const Parallel::Communicator &comm) {
for (auto storageMode :
{Parallel::StorageMode::Cloned, Parallel::StorageMode::Distributed,
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
Parallel::StorageMode::MasterOnly}) {
FakeAlgNTo1StorageModeFailure alg;
alg.setCommunicator(comm);
alg.initialize();
auto in1 = boost::make_shared<FakeWorkspaceA>(storageMode);
auto in2 = boost::make_shared<FakeWorkspaceB>(storageMode);
in1->initialize(1, 2, 1);
in2->initialize(1, 2, 1);
if (storageMode != Parallel::StorageMode::MasterOnly || comm.rank() == 0) {
alg.setProperty("InputWorkspace1", in1);
alg.setProperty("InputWorkspace2", in2);
} else {
alg.setProperty("InputWorkspace1", in1->cloneEmpty());
alg.setProperty("InputWorkspace2", in2->cloneEmpty());
}
// In a true MPI run we could simply use "out", but in the threaded
// fake-runner we have only one ADS, so we have to avoid clashes.
std::string outName("out" + std::to_string(comm.rank()));
alg.setProperty("OutputWorkspace", outName);
if (storageMode != Parallel::StorageMode::MasterOnly || comm.rank() == 0) {
TS_ASSERT_THROWS_NOTHING(alg.execute());
TS_ASSERT(alg.isExecuted());
auto out = AnalysisDataService::Instance().retrieve(outName);
// Preserving storage mode is actually not guaranteed, but this
// implementation does of FakeAlgNTo1StorageModeFailure does.
TS_ASSERT_EQUALS(out->storageMode(), storageMode);
TS_ASSERT_EQUALS(out->id(), "FakeWorkspaceA");
} else {
// Internally this actually does throw but exceptions are just logged.
TS_ASSERT_THROWS_NOTHING(alg.execute());
TS_ASSERT(!alg.isExecuted());
}
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
void runNTo1(const Parallel::Communicator &comm) {
for (auto storageMode :
{Parallel::StorageMode::Cloned, Parallel::StorageMode::Distributed,
Parallel::StorageMode::MasterOnly}) {
FakeAlgNTo1 alg;
alg.setCommunicator(comm);
alg.initialize();
auto in1 = boost::make_shared<FakeWorkspaceA>(storageMode);
auto in2 = boost::make_shared<FakeWorkspaceB>(storageMode);
in1->initialize(1, 2, 1);
in2->initialize(1, 2, 1);
if (storageMode != Parallel::StorageMode::MasterOnly || comm.rank() == 0) {
alg.setProperty("InputWorkspace1", in1);
alg.setProperty("InputWorkspace2", in2);
} else {
alg.setProperty("InputWorkspace1", in1->cloneEmpty());
alg.setProperty("InputWorkspace2", in2->cloneEmpty());
}
// In a true MPI run we could simply use "out", but in the threaded
// fake-runner we have only one ADS, so we have to avoid clashes.
std::string outName("out" + std::to_string(comm.rank()));
alg.setProperty("OutputWorkspace", outName);
TS_ASSERT_THROWS_NOTHING(alg.execute());
TS_ASSERT(alg.isExecuted());
auto out = AnalysisDataService::Instance().retrieve(outName);
TS_ASSERT_EQUALS(out->storageMode(), storageMode);
TS_ASSERT_EQUALS(out->id(), "FakeWorkspaceA");
}
}
template <Parallel::StorageMode storageMode>
void run0To1(const Parallel::Communicator &comm) {
FakeAlg0To1<storageMode> alg;
alg.setCommunicator(comm);
alg.initialize();
// In a true MPI run we could simply use "out", but in the threaded
// fake-runner we have only one ADS, so we have to avoid clashes.
std::string outName("out" + std::to_string(comm.rank()));
alg.setProperty("OutputWorkspace", outName);
TS_ASSERT_THROWS_NOTHING(alg.execute());
TS_ASSERT(alg.isExecuted());
auto out = AnalysisDataService::Instance().retrieve(outName);
TS_ASSERT_EQUALS(out->storageMode(), storageMode);
TS_ASSERT_EQUALS(out->id(), "FakeWorkspaceA");
}
template <Parallel::StorageMode modeIn, Parallel::StorageMode modeOut>
void run1To1StorageModeTransition(const Parallel::Communicator &comm) {
FakeAlg1To1StorageModeTransition<modeOut> alg;
alg.setCommunicator(comm);
alg.initialize();
auto in = boost::make_shared<FakeWorkspaceA>(modeIn);
in->initialize(1, 2, 1);
if (modeIn != Parallel::StorageMode::MasterOnly || comm.rank() == 0) {
alg.setProperty("InputWorkspace", in);
} else {
alg.setProperty("InputWorkspace", in->cloneEmpty());
}
// In a true MPI run we could simply use "out", but in the threaded
// fake-runner we have only one ADS, so we have to avoid clashes.
std::string outName("out" + std::to_string(comm.rank()));
alg.setProperty("OutputWorkspace", outName);
TS_ASSERT_THROWS_NOTHING(alg.execute());
TS_ASSERT(alg.isExecuted());
auto out = AnalysisDataService::Instance().retrieve(outName);
TS_ASSERT_EQUALS(out->storageMode(), modeOut);
TS_ASSERT_EQUALS(out->id(), "FakeWorkspaceA");
}
void runChained(const Parallel::Communicator &comm) {
using Parallel::StorageMode;
FakeAlg0To1<StorageMode::MasterOnly> alg1;
alg1.initialize();
std::string outName("out" + std::to_string(comm.rank()));
alg1.setProperty("OutputWorkspace", outName);
TS_ASSERT_THROWS_NOTHING(alg1.execute());
TS_ASSERT(alg1.isExecuted());
auto ws1 = AnalysisDataService::Instance().retrieve(outName);
TS_ASSERT_EQUALS(ws1->storageMode(), StorageMode::MasterOnly);
FakeAlg1To1StorageModeTransition<StorageMode::Distributed> alg2;
alg2.setCommunicator(comm);
alg2.initialize();
alg2.setProperty("InputWorkspace", ws1);
alg2.setProperty("OutputWorkspace", outName);
TS_ASSERT_THROWS_NOTHING(alg2.execute());
TS_ASSERT(alg2.isExecuted());
auto ws2 = AnalysisDataService::Instance().retrieve(outName);
TS_ASSERT_EQUALS(ws2->storageMode(), StorageMode::Distributed);
}
class AlgorithmMPITest : public CxxTest::TestSuite {
public:
// This pair of boilerplate methods prevent the suite being created statically
// This means the constructor isn't called when running other tests
static AlgorithmMPITest *createSuite() { return new AlgorithmMPITest(); }
static void destroySuite(AlgorithmMPITest *suite) { delete suite; }
AlgorithmMPITest() { AnalysisDataService::Instance(); }
void testNoParallelism() {
runNoParallelism(Parallel::Communicator{});
#ifdef MPI_EXPERIMENTAL
runParallel(runNoParallelism);
#endif
Mantid::API::AnalysisDataService::Instance().clear();
}
void testGetInputWorkspaceStorageModes() {
runTestGetInputWorkspaceStorageModes(Parallel::Communicator{});
#ifdef MPI_EXPERIMENTAL
runParallel(runTestGetInputWorkspaceStorageModes);
Mantid::API::AnalysisDataService::Instance().clear();
void testBadGetParallelExecutionMode() {
runBadGetParallelExecutionMode(Parallel::Communicator{});
#ifdef MPI_EXPERIMENTAL
runParallel(runBadGetParallelExecutionMode);
Mantid::API::AnalysisDataService::Instance().clear();
}
void test1To1() {
run1To1(Parallel::Communicator{});
#ifdef MPI_EXPERIMENTAL
runParallel(run1To1);
Mantid::API::AnalysisDataService::Instance().clear();
void testNTo0() {
runNTo0(Parallel::Communicator{});
#ifdef MPI_EXPERIMENTAL
runParallel(runNTo0);
#endif
Mantid::API::AnalysisDataService::Instance().clear();
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
}
void testNTo1StorageModeFailure() {
runNTo1StorageModeFailure(Parallel::Communicator{});
#ifdef MPI_EXPERIMENTAL
runParallel(runNTo1StorageModeFailure);
#endif
Mantid::API::AnalysisDataService::Instance().clear();
}
void testNTo1() {
runNTo1(Parallel::Communicator{});
#ifdef MPI_EXPERIMENTAL
runParallel(runNTo1);
#endif
Mantid::API::AnalysisDataService::Instance().clear();
}
void test0To1() {
run0To1<Parallel::StorageMode::Cloned>(Parallel::Communicator{});
run0To1<Parallel::StorageMode::Distributed>(Parallel::Communicator{});
run0To1<Parallel::StorageMode::MasterOnly>(Parallel::Communicator{});
#ifdef MPI_EXPERIMENTAL
runParallel(run0To1<Parallel::StorageMode::Cloned>);
runParallel(run0To1<Parallel::StorageMode::Distributed>);
runParallel(run0To1<Parallel::StorageMode::MasterOnly>);
#endif
Mantid::API::AnalysisDataService::Instance().clear();
}
void test1To1StorageModeTransition() {
using Parallel::StorageMode;
run1To1StorageModeTransition<StorageMode::Cloned, StorageMode::Cloned>(
Parallel::Communicator{});
run1To1StorageModeTransition<StorageMode::Cloned, StorageMode::Distributed>(
Parallel::Communicator{});
run1To1StorageModeTransition<StorageMode::Cloned, StorageMode::MasterOnly>(
Parallel::Communicator{});
run1To1StorageModeTransition<StorageMode::Distributed, StorageMode::Cloned>(
Parallel::Communicator{});
run1To1StorageModeTransition<StorageMode::Distributed,
StorageMode::Distributed>(
Parallel::Communicator{});
run1To1StorageModeTransition<StorageMode::Distributed,
StorageMode::MasterOnly>(
Parallel::Communicator{});
run1To1StorageModeTransition<StorageMode::MasterOnly, StorageMode::Cloned>(
Parallel::Communicator{});
run1To1StorageModeTransition<StorageMode::MasterOnly,
StorageMode::Distributed>(
Parallel::Communicator{});
run1To1StorageModeTransition<StorageMode::MasterOnly,
StorageMode::MasterOnly>(
Parallel::Communicator{});
#ifdef MPI_EXPERIMENTAL
runParallel(
run1To1StorageModeTransition<StorageMode::Cloned, StorageMode::Cloned>);
runParallel(run1To1StorageModeTransition<StorageMode::Cloned,
StorageMode::Distributed>);
runParallel(run1To1StorageModeTransition<StorageMode::Cloned,
StorageMode::MasterOnly>);
runParallel(run1To1StorageModeTransition<StorageMode::Distributed,
StorageMode::Cloned>);
runParallel(run1To1StorageModeTransition<StorageMode::Distributed,
StorageMode::Distributed>);
runParallel(run1To1StorageModeTransition<StorageMode::Distributed,
StorageMode::MasterOnly>);
runParallel(run1To1StorageModeTransition<StorageMode::MasterOnly,
StorageMode::Cloned>);
runParallel(run1To1StorageModeTransition<StorageMode::MasterOnly,
StorageMode::Distributed>);
runParallel(run1To1StorageModeTransition<StorageMode::MasterOnly,
StorageMode::MasterOnly>);
Mantid::API::AnalysisDataService::Instance().clear();
}
void testChained() {
// Test that output from one algorithm can be fed into another (in
// combination with non-trivial storage modes).
runChained(Parallel::Communicator{});
#ifdef MPI_EXPERIMENTAL
runParallel(runChained);
#endif
Mantid::API::AnalysisDataService::Instance().clear();
}
};
#endif /*ALGORITHMMPITEST_H_*/