-
Notifications
You must be signed in to change notification settings - Fork 224
Expand file tree
/
Copy pathcovariance_distributed.h
More file actions
704 lines (649 loc) · 32.1 KB
/
covariance_distributed.h
File metadata and controls
704 lines (649 loc) · 32.1 KB
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
149
150
151
152
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
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
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
397
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
430
431
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
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
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
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
/* file: covariance_distributed.h */
/*******************************************************************************
* Copyright 2014 Intel Corporation
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*******************************************************************************/
/*
//++
// Implementation of the interface for the correlation or variance-covariance
// matrix algorithm in the distributed processing mode
//--
*/
#ifndef __COVARIANCE_DISTRIBUTED_H__
#define __COVARIANCE_DISTRIBUTED_H__
#include "algorithms/algorithm.h"
#include "data_management/data/numeric_table.h"
#include "services/daal_defines.h"
#include "algorithms/covariance/covariance_types.h"
#include "algorithms/covariance/covariance_online.h"
namespace daal
{
namespace algorithms
{
namespace covariance
{
namespace interface1
{
/**
* @defgroup covariance_distributed Distributed
* @ingroup covariance
* @{
*/
/**
* <a name="DAAL-CLASS-ALGORITHMS__COVARIANCE__DISTRIBUTEDCONTAINERIFACE"></a>
* \brief Class that spcifies interfaces of the correlation or variance-covariance matrix algorithm.
* This class is associated with daal::algorithms::covariance::DistributedIface class
*
* \tparam algorithmFPType Data type to use in intermediate computations of the correlation or variance-covariance matrix, double or float
* \tparam method Computation method of the algorithm, \ref daal::algorithms::covariance::Method
*/
template <ComputeStep step>
class DistributedContainerIface
{};
/**
* <a name="DAAL-CLASS-ALGORITHMS__COVARIANCE__DISTRIBUTEDCONTAINERIFACE_STEP2MASTER"></a>
* \brief Class that spcifies interfaces of the correlation or variance-covariance matrix algorithm on master node.
* This class is associated with daal::algorithms::covariance::DistributedIface class
*
* \tparam algorithmFPType Data type to use in intermediate computations of the correlation or variance-covariance matrix, double or float
* \tparam method Computation method of the algorithm, \ref daal::algorithms::covariance::Method
*/
template <>
class DistributedContainerIface<step2Master> : public daal::algorithms::AnalysisContainerIface<distributed>
{
public:
DAAL_DEPRECATED DistributedContainerIface() {}
virtual ~DistributedContainerIface() {}
/**
* Computes a partial result of the correlation or variance-covariance matrix algorithm in the second step
* of the distributed processing mode
*/
virtual services::Status compute() = 0;
/**
* Computes the result of the correlation or variance-covariance matrix algorithm in the second step
* of the distributed processing mode
*/
virtual services::Status finalizeCompute() = 0;
};
/**
* <a name="DAAL-CLASS-ALGORITHMS__COVARIANCE__DISTRIBUTEDCONTAINER"></a>
* \brief Provides methods to run implementations of the correlation or variance-covariance matrix algorithm in the distributed processing mode.
* This class is associated with daal::algorithms::covariance::Distributed class
*
* \tparam step Step of distributed processing, \ref ComputeStep
* \tparam algorithmFPType Data type to use in intermediate computations of the correlation or variance-covariance matrix, double or float
* \tparam method Computation method, \ref daal::algorithms::covariance::Method
*
* \DAAL_DEPRECATED
*/
template <ComputeStep step, typename algorithmFPType, Method method, CpuType cpu>
class DistributedContainer
{};
/**
* <a name="DAAL-CLASS-ALGORITHMS__COVARIANCE__DISTRIBUTEDCONTAINER"></a>
* \brief Provides methods to run implementations of the correlation or variance-covariance matrix algorithm using default computation method in the distributed processing mode on master node.
*
* \tparam algorithmFPType Data type to use in intermediate computations of correlation or variance-covariance matrix, double or float
*/
template <typename algorithmFPType, CpuType cpu>
class DistributedContainer<step2Master, algorithmFPType, defaultDense, cpu> : public DistributedContainerIface<step2Master>
{
public:
/**
* Constructs a container for the correlation or variance-covariance matrix algorithm with a specified environment
* in the distributed processing mode
* \param[in] daalEnv Environment object
*/
DAAL_DEPRECATED DistributedContainer(daal::services::Environment::env * daalEnv);
/** Default destructor */
virtual ~DistributedContainer();
/**
* Computes a partial result of the correlation or variance-covariance matrix algorithm in the second step
* of the distributed processing mode
*/
virtual services::Status compute() DAAL_C11_OVERRIDE;
/**
* Computes the result of the correlation or variance-covariance matrix algorithm in the second step
* of the distributed processing mode
*/
virtual services::Status finalizeCompute() DAAL_C11_OVERRIDE;
};
/**
* <a name="DAAL-CLASS-ALGORITHMS__COVARIANCE__DISTRIBUTEDCONTAINER"></a>
* \brief Provides methods to run implementations of the correlation or variance-covariance matrix algorithm using single-pass computation method in the distributed processing mode on master node.
*
* \tparam algorithmFPType Data type to use in intermediate computations of correlation or variance-covariance matrix, double or float
*
* \DAAL_DEPRECATED
*/
template <typename algorithmFPType, CpuType cpu>
class DistributedContainer<step2Master, algorithmFPType, singlePassDense, cpu> : public DistributedContainerIface<step2Master>
{
public:
/**
* Constructs a container for the correlation or variance-covariance matrix algorithm with a specified environment
* in the distributed processing mode
* \param[in] daalEnv Environment object
*/
DAAL_DEPRECATED DistributedContainer(daal::services::Environment::env * daalEnv);
/** Default destructor */
virtual ~DistributedContainer();
/**
* Computes a partial result of the correlation or variance-covariance matrix algorithm in the second step
* of the distributed processing mode
*/
virtual services::Status compute() DAAL_C11_OVERRIDE;
/**
* Computes the result of the correlation or variance-covariance matrix algorithm in the second step
* of the distributed processing mode
*/
virtual services::Status finalizeCompute() DAAL_C11_OVERRIDE;
};
/**
* <a name="DAAL-CLASS-ALGORITHMS__COVARIANCE__DISTRIBUTEDCONTAINER"></a>
* \brief Provides methods to run implementations of the correlation or variance-covariance matrix algorithm using sum computation method in the distributed processing mode on master node.
*
* \tparam algorithmFPType Data type to use in intermediate computations of correlation or variance-covariance matrix, double or float
*
* \DAAL_DEPRECATED
*/
template <typename algorithmFPType, CpuType cpu>
class DistributedContainer<step2Master, algorithmFPType, sumDense, cpu> : public DistributedContainerIface<step2Master>
{
public:
/**
* Constructs a container for the correlation or variance-covariance matrix algorithm with a specified environment
* in the distributed processing mode
* \param[in] daalEnv Environment object
*/
DAAL_DEPRECATED DistributedContainer(daal::services::Environment::env * daalEnv);
/** Default destructor */
virtual ~DistributedContainer();
/**
* Computes a partial result of the correlation or variance-covariance matrix algorithm in the second step
* of the distributed processing mode
*/
virtual services::Status compute() DAAL_C11_OVERRIDE;
/**
* Computes the result of the correlation or variance-covariance matrix algorithm in the second step
* of the distributed processing mode
*/
virtual services::Status finalizeCompute() DAAL_C11_OVERRIDE;
};
/**
* <a name="DAAL-CLASS-ALGORITHMS__COVARIANCE__DISTRIBUTEDCONTAINER"></a>
* \brief Provides methods to run implementations of the correlation or variance-covariance matrix algorithm
* using fast computation method that works with Compressed Sparse Rows (CSR) numeric tables in the distributed processing mode on master node.
*
* \tparam algorithmFPType Data type to use in intermediate computations of correlation or variance-covariance matrix, double or float
*
* \DAAL_DEPRECATED
*/
template <typename algorithmFPType, CpuType cpu>
class DistributedContainer<step2Master, algorithmFPType, fastCSR, cpu> : public DistributedContainerIface<step2Master>
{
public:
/**
* Constructs a container for the correlation or variance-covariance matrix algorithm with a specified environment
* in the distributed processing mode
* \param[in] daalEnv Environment object
*/
DAAL_DEPRECATED DistributedContainer(daal::services::Environment::env * daalEnv);
/** Default destructor */
virtual ~DistributedContainer();
/**
* Computes a partial result of the correlation or variance-covariance matrix algorithm in the second step
* of the distributed processing mode
*/
virtual services::Status compute() DAAL_C11_OVERRIDE;
/**
* Computes the result of the correlation or variance-covariance matrix algorithm in the second step
* of the distributed processing mode
*/
virtual services::Status finalizeCompute() DAAL_C11_OVERRIDE;
};
/**
* <a name="DAAL-CLASS-ALGORITHMS__COVARIANCE__DISTRIBUTEDCONTAINER"></a>
* \brief Provides methods to run implementations of the correlation or variance-covariance matrix algorithm
* using single-pass computation method that works with Compressed Sparse Rows (CSR) numeric tables in the distributed processing mode on master node.
*
* \tparam algorithmFPType Data type to use in intermediate computations of correlation or variance-covariance matrix, double or float
*
* \DAAL_DEPRECATED
*/
template <typename algorithmFPType, CpuType cpu>
class DistributedContainer<step2Master, algorithmFPType, singlePassCSR, cpu> : public DistributedContainerIface<step2Master>
{
public:
/**
* Constructs a container for the correlation or variance-covariance matrix algorithm with a specified environment
* in the distributed processing mode
* \param[in] daalEnv Environment object
*/
DAAL_DEPRECATED DistributedContainer(daal::services::Environment::env * daalEnv);
/** Default destructor */
virtual ~DistributedContainer();
/**
* Computes a partial result of the correlation or variance-covariance matrix algorithm in the second step
* of the distributed processing mode
*/
virtual services::Status compute() DAAL_C11_OVERRIDE;
/**
* Computes the result of the correlation or variance-covariance matrix algorithm in the second step
* of the distributed processing mode
*/
virtual services::Status finalizeCompute() DAAL_C11_OVERRIDE;
};
/**
* <a name="DAAL-CLASS-ALGORITHMS__COVARIANCE__DISTRIBUTEDCONTAINER"></a>
* \brief Provides methods to run implementations of the correlation or variance-covariance matrix algorithm
* using precomputed sum computation method that works with Compressed Sparse Rows (CSR) numeric tables in the distributed processing mode on master node.
*
* \tparam algorithmFPType Data type to use in intermediate computations of correlation or variance-covariance matrix, double or float
*
* \DAAL_DEPRECATED
*/
template <typename algorithmFPType, CpuType cpu>
class DistributedContainer<step2Master, algorithmFPType, sumCSR, cpu> : public DistributedContainerIface<step2Master>
{
public:
/**
* Constructs a container for the correlation or variance-covariance matrix algorithm with a specified environment
* in the distributed processing mode
* \param[in] daalEnv Environment object
*/
DAAL_DEPRECATED DistributedContainer(daal::services::Environment::env * daalEnv);
/** Default destructor */
virtual ~DistributedContainer();
/**
* Computes a partial result of the correlation or variance-covariance matrix algorithm in the second step
* of the distributed processing mode
*/
virtual services::Status compute() DAAL_C11_OVERRIDE;
/**
* Computes the result of the correlation or variance-covariance matrix algorithm in the second step
* of the distributed processing mode
*/
virtual services::Status finalizeCompute() DAAL_C11_OVERRIDE;
};
/**
* <a name="DAAL-CLASS-ALGORITHMS__COVARIANCE__DISTRIBUTEDIFACE"></a>
* \brief Interface for the correlation or variance-covariance matrix algorithm in the distributed processing mode
* <!-- \n<a href="DAAL-REF-COVARIANCE-ALGORITHM">Correlation and variance-covariance matrices algorithm description and usage models</a> -->
*
* \tparam step Step of distributed processing, \ref ComputeStep
* \tparam algorithmFPType Data type to use in intermediate computations of the correlation or variance-covariance matrix, double or float
* \tparam method Computation method, \ref daal::algorithms::covariance::Method
*
* \par Enumerations
* - \ref Method Computation methods for correlation or variance-covariance matrix
* - \ref InputId Identifiers of input objects for the correlation or variance-covariance matrix algorithm
* - \ref MasterInputId Identifiers of input objects for the correlation or variance-covariance matrix algorithm on master node
* - \ref PartialResultId Identifiers of partial results for the correlation or variance-covariance matrix algorithm
* - \ref ResultId Identifiers of final results of the correlation or variance-covariance matrix algorithm
*
* \par References
* - Input class
* - PartialResult class
* - Result class
*/
template <ComputeStep step>
class DistributedIface : public daal::algorithms::Analysis<distributed>
{};
/**
* <a name="DAAL-CLASS-ALGORITHMS__COVARIANCE__DISTRIBUTEDIFACE_STEP1LOCAL"></a>
* \brief Interface for correlation or variance-covariance matrix computation algorithms in the distributed processing mode on local nodes.
* <!-- \n<a href="DAAL-REF-COVARIANCE-ALGORITHM">Correlation and variance-covariance matrices algorithm description and usage models</a> -->
*
* \tparam step Step of distributed processing, \ref ComputeStep
* \tparam algorithmFPType Data type to use in intermediate computations of the correlation or variance-covariance matrix, double or float
* \tparam method Computation method, \ref daal::algorithms::covariance::Method
*
* \par Enumerations
* - \ref Method Computation methods for correlation or variance-covariance matrix
* - \ref InputId Identifiers of input objects for the correlation or variance-covariance matrix algorithm
* - \ref MasterInputId Identifiers of input objects for the correlation or variance-covariance matrix algorithm on master node
* - \ref PartialResultId Identifiers of partial results for the correlation or variance-covariance matrix algorithm
* - \ref ResultId Identifiers of final results of the correlation or variance-covariance matrix algorithm
*
* \par References
* - Input class
* - PartialResult class
* - Result class
*/
template <>
class DistributedIface<step1Local> : public OnlineImpl
{
public:
typedef OnlineImpl super;
typedef algorithms::covariance::DistributedInput<step1Local> InputType;
typedef super::ParameterType ParameterType;
typedef super::ResultType ResultType;
typedef super::PartialResultType PartialResultType;
/** Default constructor */
DAAL_DEPRECATED DistributedIface() : OnlineImpl() {}
/**
* Constructs an algorithm for correlation or variance-covariance matrix computation
* in the distributed processing mode on local node by copying input objects and parameters
* of another algorithm for correlation or variance-covariance matrix computation
* \param[in] other An algorithm to be used as the source to initialize the input objects
* and parameters of the algorithm
*/
DistributedIface(const DistributedIface<step1Local> & other) : OnlineImpl(other) {}
/**
* Returns a pointer to the newly allocated algorithm for correlation or variance-covariance matrix computation
* in the distributed processing mode on local node with a copy of input objects and parameters of this algorithm
* for correlation or variance-covariance matrix computation
* \return Pointer to the newly allocated algorithm
*/
services::SharedPtr<DistributedIface<step1Local> > clone() const { return services::SharedPtr<DistributedIface<step1Local> >(cloneImpl()); }
protected:
virtual DistributedIface<step1Local> * cloneImpl() const DAAL_C11_OVERRIDE = 0;
};
/**
* <a name="DAAL-CLASS-ALGORITHMS__COVARIANCE__DISTRIBUTEDIFACE_STEP2MASTER"></a>
* \brief Interface for correlation or variance-covariance matrix computation algorithms in the distributed processing mode on master node.
* <!-- \n<a href="DAAL-REF-COVARIANCE-ALGORITHM">Correlation and variance-covariance matrices algorithm description and usage models</a> -->
*
* \tparam step Step of distributed processing, \ref ComputeStep
* \tparam algorithmFPType Data type to use in intermediate computations of the correlation or variance-covariance matrix, double or float
* \tparam method Computation method, \ref daal::algorithms::covariance::Method
*
* \par Enumerations
* - \ref Method Computation methods for correlation or variance-covariance matrix
* - \ref InputId Identifiers of input objects for the correlation or variance-covariance matrix algorithm
* - \ref MasterInputId Identifiers of input objects for the correlation or variance-covariance matrix algorithm on master node
* - \ref PartialResultId Identifiers of partial results for the correlation or variance-covariance matrix algorithm
* - \ref ResultId Identifiers of final results of the correlation or variance-covariance matrix algorithm
*
* \par References
* - Input class
* - PartialResult class
* - Result class
*/
template <>
class DistributedIface<step2Master> : public daal::algorithms::Analysis<distributed>
{
public:
typedef algorithms::covariance::DistributedInput<step2Master> InputType;
typedef algorithms::covariance::Parameter ParameterType;
typedef algorithms::covariance::Result ResultType;
typedef algorithms::covariance::PartialResult PartialResultType;
/** Default constructor */
DAAL_DEPRECATED DistributedIface() { initialize(); }
/**
* Constructs an algorithm for correlation or variance-covariance matrix computation
* in the distributed processing mode on master node by copying input objects and parameters
* of another algorithm for correlation or variance-covariance matrix computation
* \param[in] other An algorithm to be used as the source to initialize the input objects
* and parameters of the algorithm
*/
DistributedIface(const DistributedIface<step2Master> & other) : parameter(other.parameter)
{
initialize();
data_management::DataCollectionPtr collection = other.input.get(partialResults);
for (size_t i = 0; i < collection->size(); i++)
{
input.add(partialResults, services::staticPointerCast<PartialResultType, data_management::SerializationIface>((*collection)[i]));
}
}
virtual ~DistributedIface() {}
/**
* Returns the structure that contains final results of the correlation or variance-covariance matrix algorithm
* \return Structure that contains final results
*/
ResultPtr getResult() { return _result; }
/**
* Registers user-allocated memory to store final results of the correlation or variance-covariance matrix algorithm
* \param[in] result Structure to store the results
*/
virtual services::Status setResult(const ResultPtr & result)
{
DAAL_CHECK(result, services::ErrorNullResult)
_result = result;
_res = _result.get();
return services::Status();
}
/**
* Returns the structure that contains computed partial results of the correlation or variance-covariance matrix algorithm
* \return Structure that contains partial results
*/
PartialResultPtr getPartialResult() { return _partialResult; }
/**
* Registers user-allocated memory to store partial results of the correlation or variance-covariance matrix algorithm
* \param[in] partialResult Structure to store partial results
* \param[in] initFlag Flag that specifies whether the partial results are initialized
*/
virtual services::Status setPartialResult(const PartialResultPtr & partialResult, bool initFlag = false)
{
DAAL_CHECK(partialResult, services::ErrorNullPartialResult);
_partialResult = partialResult;
_pres = _partialResult.get();
setInitFlag(initFlag);
return services::Status();
}
/**
* Validates parameters of the finalizeCompute() method
*/
services::Status checkFinalizeComputeParams() DAAL_C11_OVERRIDE
{
services::Status s;
if (this->_partialResult)
{
s |= this->_partialResult->check(this->_par, getMethod());
if (!s) return s;
}
else
{
return services::Status(services::ErrorNullResult);
}
if (this->_result)
{
s |= this->_result->check(this->_pres, this->_par, getMethod());
if (!s) return s;
}
else
{
return services::Status(services::ErrorNullResult);
}
return s;
}
/**
* Returns a pointer to the newly allocated algorithm for correlation or variance-covariance matrix computation
* in the distributed processing mode on master node with a copy of input objects and parameters of this algorithm
* for correlation or variance-covariance matrix computation
* \return Pointer to the newly allocated algorithm
*/
services::SharedPtr<DistributedIface<step2Master> > clone() const { return services::SharedPtr<DistributedIface<step2Master> >(cloneImpl()); }
DistributedInput<step2Master> input; /*!< Input data structure */
ParameterType parameter; /*!< Parameters of the algorithm */
protected:
virtual services::Status initializePartialResult() DAAL_C11_OVERRIDE { return services::Status(); }
void initialize()
{
_in = &input;
_par = ¶meter;
_result.reset(new ResultType());
_partialResult.reset(new PartialResultType());
}
virtual DistributedIface<step2Master> * cloneImpl() const DAAL_C11_OVERRIDE = 0;
PartialResultPtr _partialResult;
ResultPtr _result;
};
/**
* <a name="DAAL-CLASS-ALGORITHMS__COVARIANCE__DISTRIBUTED"></a>
* \brief Computes correlation or variance-covariance matrix in the distributed processing mode.
* <!-- \n<a href="DAAL-REF-COVARIANCE-ALGORITHM">Correlation and variance-covariance matrices algorithm description and usage models</a> -->
*
* \tparam step Step of distributed processing, \ref ComputeStep
* \tparam algorithmFPType Data type to use in intermediate computations of the correlation or variance-covariance matrix, double or float
* \tparam method Computation method, \ref daal::algorithms::covariance::Method
*
* \par Enumerations
* - \ref Method Computation methods for correlation or variance-covariance matrix
* - \ref InputId Identifiers of input objects for the correlation or variance-covariance matrix algorithm
* - \ref MasterInputId Identifiers of input objects for the correlation or variance-covariance matrix algorithm on master node
* - \ref PartialResultId Identifiers of partial results for the correlation or variance-covariance matrix algorithm
* - \ref ResultId Identifiers of final results of the correlation or variance-covariance matrix algorithm
*
* \par References
* - Input class
* - PartialResult class
* - Result class
*/
template <ComputeStep step, typename algorithmFPType = DAAL_ALGORITHM_FP_TYPE, Method method = defaultDense>
class DAAL_EXPORT Distributed : public DistributedIface<step>
{};
/**
* <a name="DAAL-CLASS-ALGORITHMS__COVARIANCE__DISTRIBUTED_STEP1LOCAL_ALGORITHMFPTYPE_METHOD"></a>
* \brief Computes correlation or variance-covariance matrix in the first step of the distributed processing mode.
* <!-- \n<a href="DAAL-REF-COVARIANCE-ALGORITHM">Correlation and variance-covariance matrices algorithm description and usage models</a> -->
*
* \tparam step Step of distributed processing, \ref ComputeStep
* \tparam algorithmFPType Data type to use in intermediate computations of the correlation or variance-covariance matrix, double or float
* \tparam method Computation method, \ref daal::algorithms::covariance::Method
*
* \par Enumerations
* - \ref Method Computation methods for correlation or variance-covariance matrix
* - \ref InputId Identifiers of input objects for the correlation or variance-covariance matrix algorithm
* - \ref MasterInputId Identifiers of input objects for the correlation or variance-covariance matrix algorithm on master node
* - \ref PartialResultId Identifiers of partial results for the correlation or variance-covariance matrix algorithm
* - \ref ResultId Identifiers of final results of the correlation or variance-covariance matrix algorithm
*
* \par References
* - Input class
* - PartialResult class
* - Result class
*/
template <typename algorithmFPType, Method method>
class Distributed<step1Local, algorithmFPType, method> : public Online<algorithmFPType, method>
{
public:
typedef Online<algorithmFPType, method> super;
typedef algorithms::covariance::DistributedInput<step1Local> InputType;
typedef typename super::ParameterType ParameterType;
typedef typename super::ResultType ResultType;
typedef typename super::PartialResultType PartialResultType;
DAAL_DEPRECATED Distributed() : Online<algorithmFPType, method>() {}
/**
* Constructs an algorithm for correlation or variance-covariance matrix computation
* in the distributed processing mode on local node by copying input objects and parameters
* of another algorithm for correlation or variance-covariance matrix computation
* \param[in] other An algorithm to be used as the source to initialize the input objects
* and parameters of the algorithm
*/
Distributed(const Distributed<step1Local, algorithmFPType, method> & other) : Online<algorithmFPType, method>(other) {}
/**
* Returns a pointer to the newly allocated algorithm for correlation or variance-covariance matrix computation
* in the distributed processing mode on local node with a copy of input objects and parameters of this algorithm
* for correlation or variance-covariance matrix computation
* \return Pointer to the newly allocated algorithm
*/
services::SharedPtr<Distributed<step1Local, algorithmFPType, method> > clone() const
{
return services::SharedPtr<Distributed<step1Local, algorithmFPType, method> >(cloneImpl());
}
protected:
virtual Distributed<step1Local, algorithmFPType, method> * cloneImpl() const DAAL_C11_OVERRIDE
{
return new Distributed<step1Local, algorithmFPType, method>(*this);
}
};
/**
* <a name="DAAL-CLASS-ALGORITHMS__COVARIANCE__DISTRIBUTED_STEP2MASTER_ALGORITHMFPTYPE_METHOD"></a>
* \brief Computes correlation or variance-covariance matrix in the second step of the distributed processing mode.
* <!-- \n<a href="DAAL-REF-COVARIANCE-ALGORITHM">Correlation and variance-covariance matrices algorithm description and usage models</a> -->
*
* \tparam step Step of distributed processing, \ref ComputeStep
* \tparam algorithmFPType Data type to use in intermediate computations of the correlation or variance-covariance matrix, double or float
* \tparam method Computation method, \ref daal::algorithms::covariance::Method
*
* \par Enumerations
* - \ref Method Computation methods for correlation or variance-covariance matrix
* - \ref InputId Identifiers of input objects for the correlation or variance-covariance matrix algorithm
* - \ref MasterInputId Identifiers of input objects for the correlation or variance-covariance matrix algorithm on master node
* - \ref PartialResultId Identifiers of partial results for the correlation or variance-covariance matrix algorithm
* - \ref ResultId Identifiers of final results of the correlation or variance-covariance matrix algorithm
*
* \par References
* - Input class
* - PartialResult class
* - Result class
*/
template <typename algorithmFPType, Method method>
class Distributed<step2Master, algorithmFPType, method> : public DistributedIface<step2Master>
{
public:
typedef DistributedIface<step2Master> super;
typedef typename super::InputType InputType;
typedef typename super::ParameterType ParameterType;
typedef typename super::ResultType ResultType;
typedef typename super::PartialResultType PartialResultType;
/** Default constructor */
DAAL_DEPRECATED Distributed();
/**
* Constructs an algorithm for correlation or variance-covariance matrix computation
* in the distributed processing mode on master node by copying input objects and parameters
* of another algorithm for correlation or variance-covariance matrix computation
* \param[in] other An algorithm to be used as the source to initialize the input objects
* and parameters of the algorithm
*/
Distributed(const Distributed<step2Master, algorithmFPType, method> & other);
virtual ~Distributed() {}
/**
* Returns method of the algorithm
* \return Method of the algorithm
*/
virtual int getMethod() const DAAL_C11_OVERRIDE { return (int)method; }
/**
* Returns a pointer to the newly allocated algorithm for correlation or variance-covariance matrix computation
* in the distributed processing mode on master node with a copy of input objects and parameters of this algorithm
* for correlation or variance-covariance matrix computation
* \return Pointer to the newly allocated algorithm
*/
services::SharedPtr<Distributed<step2Master, algorithmFPType, method> > clone() const
{
return services::SharedPtr<Distributed<step2Master, algorithmFPType, method> >(cloneImpl());
}
protected:
virtual Distributed<step2Master, algorithmFPType, method> * cloneImpl() const DAAL_C11_OVERRIDE
{
return new Distributed<step2Master, algorithmFPType, method>(*this);
}
virtual services::Status allocateResult() DAAL_C11_OVERRIDE
{
ResultPtr result = this->getResult();
services::Status s = result->template allocate<algorithmFPType>(this->_partialResult.get(), this->_par, (int)method);
this->_res = this->_result.get();
this->_pres = this->_partialResult.get();
return s;
}
virtual services::Status allocatePartialResult() DAAL_C11_OVERRIDE
{
services::Status s = this->_partialResult->template allocate<algorithmFPType>(&(this->input), this->_par, (int)method);
this->_pres = this->_partialResult.get();
return s;
}
void initialize() { this->_ac = new __DAAL_ALGORITHM_CONTAINER(distributed, DistributedContainer, step2Master, algorithmFPType, method)(&_env); }
};
/** @} */
} // namespace interface1
using interface1::DistributedContainerIface;
using interface1::DistributedContainer;
using interface1::DistributedIface;
using interface1::Distributed;
} // namespace covariance
} // namespace algorithms
} // namespace daal
#endif // __COVARIANCE_DISTRIBUTED_H__