-
Notifications
You must be signed in to change notification settings - Fork 224
Expand file tree
/
Copy pathdbscan_distributed.h
More file actions
2032 lines (1764 loc) · 75.4 KB
/
dbscan_distributed.h
File metadata and controls
2032 lines (1764 loc) · 75.4 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
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/* file: dbscan_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 DBSCAN algorithm in the distributed
// processing mode
//--
*/
#ifndef __DBSCAN_DISTRIBUTED_H__
#define __DBSCAN_DISTRIBUTED_H__
#include "algorithms/algorithm.h"
#include "data_management/data/numeric_table.h"
#include "services/daal_defines.h"
#include "algorithms/dbscan/dbscan_types.h"
namespace daal
{
namespace algorithms
{
namespace dbscan
{
namespace interface1
{
/**
* @defgroup dbscan_distributed Distributed
* @ingroup dbscan_compute
* @{
*/
/**
* <a name="DAAL-CLASS-ALGORITHMS__DBSCAN__DISTRIBUTEDCONTAINER"></a>
* \brief Class containing methods to compute the result of DBSCAN algorithm
* in the distributed processing mode
*/
template <ComputeStep step, typename algorithmFPType, Method method, CpuType cpu>
class DistributedContainer
{};
/**
* <a name="DAAL-CLASS-ALGORITHMS__DBSCAN__DISTRIBUTEDCONTAINER_STEP1LOCAL_ALGORITHMFPTYPE_METHOD_CPU"></a>
* \brief Class containing computation methods for the DBSCAN algorithm in the first step of the distributed processing mode
*/
template <typename algorithmFPType, Method method, CpuType cpu>
class DistributedContainer<step1Local, algorithmFPType, method, cpu> : public TrainingContainerIface<distributed>
{
public:
/**
* Constructs a container for DBSCAN algorithm with a specified environment
* in the first step of the distributed processing mode
* \param[in] daalEnv Environment object
*/
DAAL_DEPRECATED DistributedContainer(daal::services::Environment::env * daalEnv);
/** Default destructor */
~DistributedContainer();
/**
* Computes a partial result of DBSCAN algorithm
* in the first step of the distributed processing mode
*/
services::Status compute() DAAL_C11_OVERRIDE;
/**
* Computes the result of DBSCAN algorithm
* in the first step of the distributed processing mode
*/
services::Status finalizeCompute() DAAL_C11_OVERRIDE;
};
/**
* <a name="DAAL-CLASS-ALGORITHMS__DBSCAN__DISTRIBUTEDCONTAINER_STEP2LOCAL_ALGORITHMFPTYPE_METHOD_CPU"></a>
* \brief Class containing computation methods for the DBSCAN algorithm in the second step of the distributed processing mode
*/
template <typename algorithmFPType, Method method, CpuType cpu>
class DistributedContainer<step2Local, algorithmFPType, method, cpu> : public TrainingContainerIface<distributed>
{
public:
/**
* Constructs a container for DBSCAN algorithm with a specified environment
* in the second step of the distributed processing mode
* \param[in] daalEnv Environment object
*/
DAAL_DEPRECATED DistributedContainer(daal::services::Environment::env * daalEnv);
/** Default destructor */
~DistributedContainer();
/**
* Computes a partial result of DBSCAN algorithm
* in the second step of the distributed processing mode
*/
services::Status compute() DAAL_C11_OVERRIDE;
/**
* Computes the result of DBSCAN algorithm
* in the second step of the distributed processing mode
*/
services::Status finalizeCompute() DAAL_C11_OVERRIDE;
};
/**
* <a name="DAAL-CLASS-ALGORITHMS__DBSCAN__DISTRIBUTEDCONTAINER_STEP3LOCAL_ALGORITHMFPTYPE_METHOD_CPU"></a>
* \brief Class containing computation methods for the DBSCAN algorithm in the third step of the distributed processing mode
*/
template <typename algorithmFPType, Method method, CpuType cpu>
class DistributedContainer<step3Local, algorithmFPType, method, cpu> : public TrainingContainerIface<distributed>
{
public:
/**
* Constructs a container for DBSCAN algorithm with a specified environment
* in the third step of the distributed processing mode
* \param[in] daalEnv Environment object
*/
DAAL_DEPRECATED DistributedContainer(daal::services::Environment::env * daalEnv);
/** Default destructor */
~DistributedContainer();
/**
* Computes a partial result of DBSCAN algorithm
* in the third step of the distributed processing mode
*/
services::Status compute() DAAL_C11_OVERRIDE;
/**
* Computes the result of DBSCAN algorithm
* in the third step of the distributed processing mode
*/
services::Status finalizeCompute() DAAL_C11_OVERRIDE;
};
/**
* <a name="DAAL-CLASS-ALGORITHMS__DBSCAN__DISTRIBUTEDCONTAINER_STEP4LOCAL_ALGORITHMFPTYPE_METHOD_CPU"></a>
* \brief Class containing computation methods for the DBSCAN algorithm in the fourth step of the distributed processing mode
*/
template <typename algorithmFPType, Method method, CpuType cpu>
class DistributedContainer<step4Local, algorithmFPType, method, cpu> : public TrainingContainerIface<distributed>
{
public:
/**
* Constructs a container for DBSCAN algorithm with a specified environment
* in the fourth step of the distributed processing mode
* \param[in] daalEnv Environment object
*/
DAAL_DEPRECATED DistributedContainer(daal::services::Environment::env * daalEnv);
/** Default destructor */
~DistributedContainer();
/**
* Computes a partial result of DBSCAN algorithm
* in the fourth step of the distributed processing mode
*/
services::Status compute() DAAL_C11_OVERRIDE;
/**
* Computes the result of DBSCAN algorithm
* in the fourth step of the distributed processing mode
*/
services::Status finalizeCompute() DAAL_C11_OVERRIDE;
};
/**
* <a name="DAAL-CLASS-ALGORITHMS__DBSCAN__DISTRIBUTEDCONTAINER_STEP5LOCAL_ALGORITHMFPTYPE_METHOD_CPU"></a>
* \brief Class containing computation methods for the DBSCAN algorithm in the fifth step of the distributed processing mode
*/
template <typename algorithmFPType, Method method, CpuType cpu>
class DistributedContainer<step5Local, algorithmFPType, method, cpu> : public TrainingContainerIface<distributed>
{
public:
/**
* Constructs a container for DBSCAN algorithm with a specified environment
* in the fifth step of the distributed processing mode
* \param[in] daalEnv Environment object
*/
DAAL_DEPRECATED DistributedContainer(daal::services::Environment::env * daalEnv);
/** Default destructor */
~DistributedContainer();
/**
* Computes a partial result of DBSCAN algorithm
* in the fifth step of the distributed processing mode
*/
services::Status compute() DAAL_C11_OVERRIDE;
/**
* Computes the result of DBSCAN algorithm
* in the fifth step of the distributed processing mode
*/
services::Status finalizeCompute() DAAL_C11_OVERRIDE;
};
/**
* <a name="DAAL-CLASS-ALGORITHMS__DBSCAN__DISTRIBUTEDCONTAINER_STEP6LOCAL_ALGORITHMFPTYPE_METHOD_CPU"></a>
* \brief Class containing computation methods for the DBSCAN algorithm in the sixth step of the distributed processing mode
*/
template <typename algorithmFPType, Method method, CpuType cpu>
class DistributedContainer<step6Local, algorithmFPType, method, cpu> : public TrainingContainerIface<distributed>
{
public:
/**
* Constructs a container for DBSCAN algorithm with a specified environment
* in the sixth step of the distributed processing mode
* \param[in] daalEnv Environment object
*/
DAAL_DEPRECATED DistributedContainer(daal::services::Environment::env * daalEnv);
/** Default destructor */
~DistributedContainer();
/**
* Computes a partial result of DBSCAN algorithm
* in the sixth step of the distributed processing mode
*/
services::Status compute() DAAL_C11_OVERRIDE;
/**
* Computes the result of DBSCAN algorithm
* in the sixth step of the distributed processing mode
*/
services::Status finalizeCompute() DAAL_C11_OVERRIDE;
};
/**
* <a name="DAAL-CLASS-ALGORITHMS__DBSCAN__DISTRIBUTEDCONTAINER_STEP7MASTER_ALGORITHMFPTYPE_METHOD_CPU"></a>
* \brief Class containing computation methods for the DBSCAN algorithm in the seventh step of the distributed processing mode
*/
template <typename algorithmFPType, Method method, CpuType cpu>
class DistributedContainer<step7Master, algorithmFPType, method, cpu> : public TrainingContainerIface<distributed>
{
public:
/**
* Constructs a container for DBSCAN algorithm with a specified environment
* in the seventh step of the distributed processing mode
* \param[in] daalEnv Environment object
*/
DAAL_DEPRECATED DistributedContainer(daal::services::Environment::env * daalEnv);
/** Default destructor */
~DistributedContainer();
/**
* Computes a partial result of DBSCAN algorithm
* in the seventh step of the distributed processing mode
*/
services::Status compute() DAAL_C11_OVERRIDE;
/**
* Computes the result of DBSCAN algorithm
* in the seventh step of the distributed processing mode
*/
services::Status finalizeCompute() DAAL_C11_OVERRIDE;
};
/**
* <a name="DAAL-CLASS-ALGORITHMS__DBSCAN__DISTRIBUTEDCONTAINER_STEP8LOCAL_ALGORITHMFPTYPE_METHOD_CPU"></a>
* \brief Class containing computation methods for the DBSCAN algorithm in the eighth step of the distributed processing mode
*/
template <typename algorithmFPType, Method method, CpuType cpu>
class DistributedContainer<step8Local, algorithmFPType, method, cpu> : public TrainingContainerIface<distributed>
{
public:
/**
* Constructs a container for DBSCAN algorithm with a specified environment
* in the eighth step of the distributed processing mode
* \param[in] daalEnv Environment object
*/
DAAL_DEPRECATED DistributedContainer(daal::services::Environment::env * daalEnv);
/** Default destructor */
~DistributedContainer();
/**
* Computes a partial result of DBSCAN algorithm
* in the eighth step of the distributed processing mode
*/
services::Status compute() DAAL_C11_OVERRIDE;
/**
* Computes the result of DBSCAN algorithm
* in the eighth step of the distributed processing mode
*/
services::Status finalizeCompute() DAAL_C11_OVERRIDE;
};
/**
* <a name="DAAL-CLASS-ALGORITHMS__DBSCAN__DISTRIBUTEDCONTAINER_STEP9MASTER_ALGORITHMFPTYPE_METHOD_CPU"></a>
* \brief Class containing computation methods for the DBSCAN algorithm in the ninth step of the distributed processing mode
*/
template <typename algorithmFPType, Method method, CpuType cpu>
class DistributedContainer<step9Master, algorithmFPType, method, cpu> : public TrainingContainerIface<distributed>
{
public:
/**
* Constructs a container for DBSCAN algorithm with a specified environment
* in the ninth step of the distributed processing mode
* \param[in] daalEnv Environment object
*/
DAAL_DEPRECATED DistributedContainer(daal::services::Environment::env * daalEnv);
/** Default destructor */
~DistributedContainer();
/**
* Computes a partial result of DBSCAN algorithm
* in the ninth step of the distributed processing mode
*/
services::Status compute() DAAL_C11_OVERRIDE;
/**
* Computes the result of DBSCAN algorithm
* in the ninth step of the distributed processing mode
*/
services::Status finalizeCompute() DAAL_C11_OVERRIDE;
};
/**
* <a name="DAAL-CLASS-ALGORITHMS__DBSCAN__DISTRIBUTEDCONTAINER_STEP10LOCAL_ALGORITHMFPTYPE_METHOD_CPU"></a>
* \brief Class containing computation methods for the DBSCAN algorithm in the tenth step of the distributed processing mode
*/
template <typename algorithmFPType, Method method, CpuType cpu>
class DistributedContainer<step10Local, algorithmFPType, method, cpu> : public TrainingContainerIface<distributed>
{
public:
/**
* Constructs a container for DBSCAN algorithm with a specified environment
* in the tenth step of the distributed processing mode
* \param[in] daalEnv Environment object
*/
DAAL_DEPRECATED DistributedContainer(daal::services::Environment::env * daalEnv);
/** Default destructor */
~DistributedContainer();
/**
* Computes a partial result of DBSCAN algorithm
* in the tenth step of the distributed processing mode
*/
services::Status compute() DAAL_C11_OVERRIDE;
/**
* Computes the result of DBSCAN algorithm
* in the tenth step of the distributed processing mode
*/
services::Status finalizeCompute() DAAL_C11_OVERRIDE;
};
/**
* <a name="DAAL-CLASS-ALGORITHMS__DBSCAN__DISTRIBUTEDCONTAINER_STEP11LOCAL_ALGORITHMFPTYPE_METHOD_CPU"></a>
* \brief Class containing computation methods for the DBSCAN algorithm in the eleventh step of the distributed processing mode
*/
template <typename algorithmFPType, Method method, CpuType cpu>
class DistributedContainer<step11Local, algorithmFPType, method, cpu> : public TrainingContainerIface<distributed>
{
public:
/**
* Constructs a container for DBSCAN algorithm with a specified environment
* in the eleventh step of the distributed processing mode
* \param[in] daalEnv Environment object
*/
DAAL_DEPRECATED DistributedContainer(daal::services::Environment::env * daalEnv);
/** Default destructor */
~DistributedContainer();
/**
* Computes a partial result of DBSCAN algorithm
* in the eleventh step of the distributed processing mode
*/
services::Status compute() DAAL_C11_OVERRIDE;
/**
* Computes the result of DBSCAN algorithm
* in the eleventh step of the distributed processing mode
*/
services::Status finalizeCompute() DAAL_C11_OVERRIDE;
};
/**
* <a name="DAAL-CLASS-ALGORITHMS__DBSCAN__DISTRIBUTEDCONTAINER_STEP12LOCAL_ALGORITHMFPTYPE_METHOD_CPU"></a>
* \brief Class containing computation methods for the DBSCAN algorithm in the twelfth step of the distributed processing mode
*/
template <typename algorithmFPType, Method method, CpuType cpu>
class DistributedContainer<step12Local, algorithmFPType, method, cpu> : public TrainingContainerIface<distributed>
{
public:
/**
* Constructs a container for DBSCAN algorithm with a specified environment
* in the twelfth step of the distributed processing mode
* \param[in] daalEnv Environment object
*/
DAAL_DEPRECATED DistributedContainer(daal::services::Environment::env * daalEnv);
/** Default destructor */
~DistributedContainer();
/**
* Computes a partial result of DBSCAN algorithm
* in the twelfth step of the distributed processing mode
*/
services::Status compute() DAAL_C11_OVERRIDE;
/**
* Computes the result of DBSCAN algorithm
* in the twelfth step of the distributed processing mode
*/
services::Status finalizeCompute() DAAL_C11_OVERRIDE;
};
/**
* <a name="DAAL-CLASS-ALGORITHMS__DBSCAN__DISTRIBUTEDCONTAINER_STEP13LOCAL_ALGORITHMFPTYPE_METHOD_CPU"></a>
* \brief Class containing computation methods for the DBSCAN algorithm in the thirteenth step of the distributed processing mode
*/
template <typename algorithmFPType, Method method, CpuType cpu>
class DistributedContainer<step13Local, algorithmFPType, method, cpu> : public TrainingContainerIface<distributed>
{
public:
/**
* Constructs a container for DBSCAN algorithm with a specified environment
* in the thirteenth step of the distributed processing mode
* \param[in] daalEnv Environment object
*/
DAAL_DEPRECATED DistributedContainer(daal::services::Environment::env * daalEnv);
/** Default destructor */
~DistributedContainer();
/**
* Computes a partial result of DBSCAN algorithm
* in the thirteenth step of the distributed processing mode
*/
services::Status compute() DAAL_C11_OVERRIDE;
/**
* Computes the result of DBSCAN algorithm
* in the thirteenth step of the distributed processing mode
*/
services::Status finalizeCompute() DAAL_C11_OVERRIDE;
};
/**
* <a name="DAAL-CLASS-ALGORITHMS__DBSCAN__DISTRIBUTED"></a>
* \brief Computes the results of the DBSCAN algorithm in the distributed processing mode
* <!-- \n<a href="DAAL-REF-DBSCAN-ALGORITHM">DBSCAN algorithm description and usage models</a> -->
*
* \tparam algorithmFPType Data type to use in intermediate computations of DBSCAN, double or float
* \tparam method Computation method of the algorithm, \ref Method
*
* \par Enumerations
* - \ref Method Computation methods for the DBSCAN algorithm
* - \ref InputId Identifiers of input objects for the DBSCAN algorithm
* - \ref ResultId Identifiers of results of the DBSCAN algorithm
*
* \par References
* - Input class
* - Result class
*/
template <ComputeStep step, typename algorithmFPType = DAAL_ALGORITHM_FP_TYPE, Method method = defaultDense>
class DAAL_EXPORT Distributed
{};
/**
* <a name="DAAL-CLASS-ALGORITHMS__DBSCAN__DISTRIBUTED_STEP1LOCAL_ALGORITHMFPTYPE_METHOD"></a>
* \brief Computes the results of the DBSCAN algorithm in the first step of the distributed processing mode
* <!-- \n<a href="DAAL-REF-DBSCAN-ALGORITHM">DBSCAN algorithm description and usage models</a> -->
*
* \tparam algorithmFPType Data type to use in intermediate computations of DBSCAN, double or float
* \tparam method Computation method of the algorithm, \ref Method
*
* \par Enumerations
* - \ref Method Computation methods for the DBSCAN algorithm
* - \ref InputId Identifiers of input objects for the DBSCAN algorithm
* - \ref ResultId Identifiers of results of the DBSCAN algorithm
*/
template <typename algorithmFPType, Method method>
class Distributed<step1Local, algorithmFPType, method> : public daal::algorithms::Analysis<distributed>
{
public:
typedef algorithms::dbscan::DistributedInput<step1Local> InputType;
typedef algorithms::dbscan::Parameter ParameterType;
typedef algorithms::dbscan::DistributedPartialResultStep1 PartialResultType;
/**
* Constructs a DBSCAN algorithm
* \param[in] blockIndex Unique identifier of block initially passed for computation on the local node
* \param[in] nBlocks Number of blocks initially passed for computation on all nodes
*/
DAAL_DEPRECATED Distributed(size_t blockIndex, size_t nBlocks);
/**
* Constructs a DBSCAN algorithm by copying input objects and parameters
* of another DBSCAN algorithm
* \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);
~Distributed()
{
delete _par;
_par = 0;
}
/**
* Gets parameter of the algorithm
* \return parameter of the algorithm
*/
ParameterType & parameter() { return *static_cast<ParameterType *>(_par); }
/**
* Gets parameter of the algorithm
* \return parameter of the algorithm
*/
const ParameterType & parameter() const { return *static_cast<const ParameterType *>(_par); }
/**
* Returns the method of the algorithm
* \return Method of the algorithm
*/
virtual int getMethod() const DAAL_C11_OVERRIDE { return (int)method; }
/**
* Returns the structure that contains computed partial results
* \return Structure that contains computed partial results
*/
DistributedPartialResultStep1Ptr getPartialResult() { return _partialResult; }
/**
* Sets the structure that contains computed partial results
*/
services::Status setPartialResult(const DistributedPartialResultStep1Ptr & partialRes)
{
DAAL_CHECK(partialRes, services::ErrorNullPartialResult);
_partialResult = partialRes;
_pres = _partialResult.get();
return services::Status();
}
/**
* Returns a pointer to the newly allocated DBSCAN algorithm with a copy of input objects
* and parameters of this DBSCAN algorithm
* \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);
}
virtual services::Status allocateResult() DAAL_C11_OVERRIDE { return services::Status(); }
virtual services::Status allocatePartialResult() DAAL_C11_OVERRIDE
{
services::Status s = _partialResult->allocate<algorithmFPType>(&input, _par, (int)method);
_pres = _partialResult.get();
return s;
}
virtual services::Status initializePartialResult() DAAL_C11_OVERRIDE { return services::Status(); }
void initialize()
{
Analysis<distributed>::_ac = new __DAAL_ALGORITHM_CONTAINER(distributed, DistributedContainer, step1Local, algorithmFPType, method)(&_env);
_in = &input;
_partialResult.reset(new PartialResultType());
}
public:
InputType input; /*!< %Input data structure */
private:
DistributedPartialResultStep1Ptr _partialResult;
Distributed & operator=(const Distributed &);
};
/**
* <a name="DAAL-CLASS-ALGORITHMS__DBSCAN__DISTRIBUTED_STEP2LOCAL_ALGORITHMFPTYPE_METHOD"></a>
* \brief Computes the results of the DBSCAN algorithm in the second step of the distributed processing mode
* <!-- \n<a href="DAAL-REF-DBSCAN-ALGORITHM">DBSCAN algorithm description and usage models</a> -->
*
* \tparam algorithmFPType Data type to use in intermediate computations of DBSCAN, double or float
* \tparam method Computation method of the algorithm, \ref Method
*
* \par Enumerations
* - \ref Method Computation methods for the DBSCAN algorithm
* - \ref InputId Identifiers of input objects for the DBSCAN algorithm
* - \ref ResultId Identifiers of results of the DBSCAN algorithm
*/
template <typename algorithmFPType, Method method>
class Distributed<step2Local, algorithmFPType, method> : public daal::algorithms::Analysis<distributed>
{
public:
typedef algorithms::dbscan::DistributedInput<step2Local> InputType;
typedef algorithms::dbscan::Parameter ParameterType;
typedef algorithms::dbscan::DistributedPartialResultStep2 PartialResultType;
/**
* Constructs a DBSCAN algorithm
* \param[in] blockIndex Unique identifier of block initially passed for computation on the local node
* \param[in] nBlocks Number of blocks initially passed for computation on all nodes
*/
DAAL_DEPRECATED Distributed(size_t blockIndex, size_t nBlocks);
/**
* Constructs a DBSCAN algorithm by copying input objects and parameters
* of another DBSCAN algorithm
* \param[in] other An algorithm to be used as the source to initialize the input objects
* and parameters of the algorithm
*/
Distributed(const Distributed<step2Local, algorithmFPType, method> & other);
~Distributed()
{
delete _par;
_par = 0;
}
/**
* Gets parameter of the algorithm
* \return parameter of the algorithm
*/
ParameterType & parameter() { return *static_cast<ParameterType *>(_par); }
/**
* Gets parameter of the algorithm
* \return parameter of the algorithm
*/
const ParameterType & parameter() const { return *static_cast<const ParameterType *>(_par); }
/**
* Returns the method of the algorithm
* \return Method of the algorithm
*/
virtual int getMethod() const DAAL_C11_OVERRIDE { return (int)method; }
/**
* Returns the structure that contains computed partial results
* \return Structure that contains computed partial results
*/
DistributedPartialResultStep2Ptr getPartialResult() { return _partialResult; }
/**
* Sets the structure that contains computed partial results
*/
services::Status setPartialResult(const DistributedPartialResultStep2Ptr & partialRes)
{
DAAL_CHECK(partialRes, services::ErrorNullPartialResult);
_partialResult = partialRes;
_pres = _partialResult.get();
return services::Status();
}
/**
* Returns a pointer to the newly allocated DBSCAN algorithm with a copy of input objects
* and parameters of this DBSCAN algorithm
* \return Pointer to the newly allocated algorithm
*/
services::SharedPtr<Distributed<step2Local, algorithmFPType, method> > clone() const
{
return services::SharedPtr<Distributed<step2Local, algorithmFPType, method> >(cloneImpl());
}
protected:
virtual Distributed<step2Local, algorithmFPType, method> * cloneImpl() const DAAL_C11_OVERRIDE
{
return new Distributed<step2Local, algorithmFPType, method>(*this);
}
virtual services::Status allocateResult() DAAL_C11_OVERRIDE { return services::Status(); }
virtual services::Status allocatePartialResult() DAAL_C11_OVERRIDE
{
services::Status s = _partialResult->allocate<algorithmFPType>(&input, _par, (int)method);
_pres = _partialResult.get();
return s;
}
virtual services::Status initializePartialResult() DAAL_C11_OVERRIDE { return services::Status(); }
void initialize()
{
Analysis<distributed>::_ac = new __DAAL_ALGORITHM_CONTAINER(distributed, DistributedContainer, step2Local, algorithmFPType, method)(&_env);
_in = &input;
_partialResult.reset(new PartialResultType());
}
public:
InputType input; /*!< %Input data structure */
private:
DistributedPartialResultStep2Ptr _partialResult;
Distributed & operator=(const Distributed &);
};
/**
* <a name="DAAL-CLASS-ALGORITHMS__DBSCAN__DISTRIBUTED_STEP3LOCAL_ALGORITHMFPTYPE_METHOD"></a>
* \brief Computes the results of the DBSCAN algorithm in the third step of the distributed processing mode
* <!-- \n<a href="DAAL-REF-DBSCAN-ALGORITHM">DBSCAN algorithm description and usage models</a> -->
*
* \tparam algorithmFPType Data type to use in intermediate computations of DBSCAN, double or float
* \tparam method Computation method of the algorithm, \ref Method
*
* \par Enumerations
* - \ref Method Computation methods for the DBSCAN algorithm
* - \ref InputId Identifiers of input objects for the DBSCAN algorithm
* - \ref ResultId Identifiers of results of the DBSCAN algorithm
*/
template <typename algorithmFPType, Method method>
class Distributed<step3Local, algorithmFPType, method> : public daal::algorithms::Analysis<distributed>
{
public:
typedef algorithms::dbscan::DistributedInput<step3Local> InputType;
typedef algorithms::dbscan::Parameter ParameterType;
typedef algorithms::dbscan::DistributedPartialResultStep3 PartialResultType;
/**
* Constructs a DBSCAN algorithm
* \param[in] leftBlocks Number of blocks that will process observations with value of selected
split feature lesser than selected split value
* \param[in] rightBlocks Number of blocks that will process observations with value of selected
split feature greater than selected split value
*/
DAAL_DEPRECATED Distributed(size_t leftBlocks, size_t rightBlocks);
/**
* Constructs a DBSCAN algorithm by copying input objects and parameters
* of another DBSCAN algorithm
* \param[in] other An algorithm to be used as the source to initialize the input objects
* and parameters of the algorithm
*/
Distributed(const Distributed<step3Local, algorithmFPType, method> & other);
~Distributed()
{
delete _par;
_par = 0;
}
/**
* Gets parameter of the algorithm
* \return parameter of the algorithm
*/
ParameterType & parameter() { return *static_cast<ParameterType *>(_par); }
/**
* Gets parameter of the algorithm
* \return parameter of the algorithm
*/
const ParameterType & parameter() const { return *static_cast<const ParameterType *>(_par); }
/**
* Returns the method of the algorithm
* \return Method of the algorithm
*/
virtual int getMethod() const DAAL_C11_OVERRIDE { return (int)method; }
/**
* Returns the structure that contains computed partial results
* \return Structure that contains computed partial results
*/
DistributedPartialResultStep3Ptr getPartialResult() { return _partialResult; }
/**
* Sets the structure that contains computed partial results
*/
services::Status setPartialResult(const DistributedPartialResultStep3Ptr & partialRes)
{
DAAL_CHECK(partialRes, services::ErrorNullPartialResult);
_partialResult = partialRes;
_pres = _partialResult.get();
return services::Status();
}
/**
* Returns a pointer to the newly allocated DBSCAN algorithm with a copy of input objects
* and parameters of this DBSCAN algorithm
* \return Pointer to the newly allocated algorithm
*/
services::SharedPtr<Distributed<step3Local, algorithmFPType, method> > clone() const
{
return services::SharedPtr<Distributed<step3Local, algorithmFPType, method> >(cloneImpl());
}
protected:
virtual Distributed<step3Local, algorithmFPType, method> * cloneImpl() const DAAL_C11_OVERRIDE
{
return new Distributed<step3Local, algorithmFPType, method>(*this);
}
virtual services::Status allocateResult() DAAL_C11_OVERRIDE { return services::Status(); }
virtual services::Status allocatePartialResult() DAAL_C11_OVERRIDE
{
services::Status s = _partialResult->allocate<algorithmFPType>(&input, _par, (int)method);
_pres = _partialResult.get();
return s;
}
virtual services::Status initializePartialResult() DAAL_C11_OVERRIDE { return services::Status(); }
void initialize()
{
Analysis<distributed>::_ac = new __DAAL_ALGORITHM_CONTAINER(distributed, DistributedContainer, step3Local, algorithmFPType, method)(&_env);
_in = &input;
_partialResult.reset(new PartialResultType());
}
public:
InputType input; /*!< %Input data structure */
private:
DistributedPartialResultStep3Ptr _partialResult;
Distributed & operator=(const Distributed &);
};
/**
* <a name="DAAL-CLASS-ALGORITHMS__DBSCAN__DISTRIBUTED_STEP4LOCAL_ALGORITHMFPTYPE_METHOD"></a>
* \brief Computes the results of the DBSCAN algorithm in the fourth step of the distributed processing mode
* <!-- \n<a href="DAAL-REF-DBSCAN-ALGORITHM">DBSCAN algorithm description and usage models</a> -->
*
* \tparam algorithmFPType Data type to use in intermediate computations of DBSCAN, double or float
* \tparam method Computation method of the algorithm, \ref Method
*
* \par Enumerations
* - \ref Method Computation methods for the DBSCAN algorithm
* - \ref InputId Identifiers of input objects for the DBSCAN algorithm
* - \ref ResultId Identifiers of results of the DBSCAN algorithm
*/
template <typename algorithmFPType, Method method>
class Distributed<step4Local, algorithmFPType, method> : public daal::algorithms::Analysis<distributed>
{
public:
typedef algorithms::dbscan::DistributedInput<step4Local> InputType;
typedef algorithms::dbscan::Parameter ParameterType;
typedef algorithms::dbscan::DistributedPartialResultStep4 PartialResultType;
/**
* Constructs a DBSCAN algorithm
* \param[in] leftBlocks Number of blocks that will process observations with value of selected
split feature lesser than selected split value
* \param[in] rightBlocks Number of blocks that will process observations with value of selected
split feature greater than selected split value
*/
DAAL_DEPRECATED Distributed(size_t leftBlocks, size_t rightBlocks);
/**
* Constructs a DBSCAN algorithm by copying input objects and parameters
* of another DBSCAN algorithm
* \param[in] other An algorithm to be used as the source to initialize the input objects
* and parameters of the algorithm
*/
Distributed(const Distributed<step4Local, algorithmFPType, method> & other);
~Distributed()
{
delete _par;
_par = 0;
}
/**
* Gets parameter of the algorithm
* \return parameter of the algorithm
*/
ParameterType & parameter() { return *static_cast<ParameterType *>(_par); }
/**
* Gets parameter of the algorithm
* \return parameter of the algorithm
*/
const ParameterType & parameter() const { return *static_cast<const ParameterType *>(_par); }
/**
* Returns the method of the algorithm
* \return Method of the algorithm
*/
virtual int getMethod() const DAAL_C11_OVERRIDE { return (int)method; }
/**
* Returns the structure that contains computed partial results
* \return Structure that contains computed partial results
*/
DistributedPartialResultStep4Ptr getPartialResult() { return _partialResult; }
/**
* Sets the structure that contains computed partial results
*/
services::Status setPartialResult(const DistributedPartialResultStep4Ptr & partialRes)
{
DAAL_CHECK(partialRes, services::ErrorNullPartialResult);
_partialResult = partialRes;
_pres = _partialResult.get();
return services::Status();
}
/**
* Returns a pointer to the newly allocated DBSCAN algorithm with a copy of input objects
* and parameters of this DBSCAN algorithm
* \return Pointer to the newly allocated algorithm
*/
services::SharedPtr<Distributed<step4Local, algorithmFPType, method> > clone() const
{
return services::SharedPtr<Distributed<step4Local, algorithmFPType, method> >(cloneImpl());
}
protected:
virtual Distributed<step4Local, algorithmFPType, method> * cloneImpl() const DAAL_C11_OVERRIDE
{
return new Distributed<step4Local, algorithmFPType, method>(*this);
}
virtual services::Status allocateResult() DAAL_C11_OVERRIDE { return services::Status(); }
virtual services::Status allocatePartialResult() DAAL_C11_OVERRIDE
{
services::Status s = _partialResult->allocate<algorithmFPType>(&input, _par, (int)method);
_pres = _partialResult.get();
return s;
}
virtual services::Status initializePartialResult() DAAL_C11_OVERRIDE { return services::Status(); }
void initialize()
{
Analysis<distributed>::_ac = new __DAAL_ALGORITHM_CONTAINER(distributed, DistributedContainer, step4Local, algorithmFPType, method)(&_env);
_in = &input;
_partialResult.reset(new PartialResultType());
}
public:
InputType input; /*!< %Input data structure */
private:
DistributedPartialResultStep4Ptr _partialResult;
Distributed & operator=(const Distributed &);
};
/**
* <a name="DAAL-CLASS-ALGORITHMS__DBSCAN__DISTRIBUTED_STEP5LOCAL_ALGORITHMFPTYPE_METHOD"></a>
* \brief Computes the results of the DBSCAN algorithm in the fifth step of the distributed processing mode
* <!-- \n<a href="DAAL-REF-DBSCAN-ALGORITHM">DBSCAN algorithm description and usage models</a> -->
*
* \tparam algorithmFPType Data type to use in intermediate computations of DBSCAN, double or float
* \tparam method Computation method of the algorithm, \ref Method
*
* \par Enumerations
* - \ref Method Computation methods for the DBSCAN algorithm
* - \ref InputId Identifiers of input objects for the DBSCAN algorithm
* - \ref ResultId Identifiers of results of the DBSCAN algorithm
*/
template <typename algorithmFPType, Method method>
class Distributed<step5Local, algorithmFPType, method> : public daal::algorithms::Analysis<distributed>
{
public:
typedef algorithms::dbscan::DistributedInput<step5Local> InputType;
typedef algorithms::dbscan::Parameter ParameterType;
typedef algorithms::dbscan::DistributedPartialResultStep5 PartialResultType;
/**
* Constructs a DBSCAN algorithm
* \param[in] blockIndex Unique identifier of block initially passed for computation on the local node
* \param[in] nBlocks Number of blocks initially passed for computation on all nodes
* \param[in] epsilon Radius of neighborhood
*/
DAAL_DEPRECATED Distributed(size_t blockIndex, size_t nBlocks, algorithmFPType epsilon);
/**
* Constructs a DBSCAN algorithm by copying input objects and parameters
* of another DBSCAN algorithm
* \param[in] other An algorithm to be used as the source to initialize the input objects
* and parameters of the algorithm
*/
Distributed(const Distributed<step5Local, algorithmFPType, method> & other);
~Distributed()
{
delete _par;
_par = 0;
}
/**
* Gets parameter of the algorithm
* \return parameter of the algorithm
*/
ParameterType & parameter() { return *static_cast<ParameterType *>(_par); }
/**
* Gets parameter of the algorithm
* \return parameter of the algorithm
*/
const ParameterType & parameter() const { return *static_cast<const ParameterType *>(_par); }
/**
* Returns the method of the algorithm
* \return Method of the algorithm
*/
virtual int getMethod() const DAAL_C11_OVERRIDE { return (int)method; }
/**
* Returns the structure that contains computed partial results