Uses of Interface
elki.parallel.processor.Processor
-
Packages that use Processor Package Description elki.clustering.dbscan.parallel Parallel versions of Generalized DBSCAN.elki.clustering.kmeans.parallel Parallelized implementations of k-means.elki.outlier.distance.parallel Parallel implementations of distance-based outlier detectors.elki.outlier.lof.parallel Parallelized variants of LOF.elki.parallel Parallel processing core for ELKI.elki.parallel.processor Processor API of ELKI, and some essential shared processors. -
-
Uses of Processor in elki.clustering.dbscan.parallel
Classes in elki.clustering.dbscan.parallel that implement Processor Modifier and Type Class Description static class
ParallelGeneralizedDBSCAN.Instance<T>
Instance for a particular data set. -
Uses of Processor in elki.clustering.kmeans.parallel
Classes in elki.clustering.kmeans.parallel that implement Processor Modifier and Type Class Description class
KMeansProcessor<V extends NumberVector>
Parallel k-means implementation. -
Uses of Processor in elki.outlier.distance.parallel
Classes in elki.outlier.distance.parallel that implement Processor Modifier and Type Class Description class
KNNWeightProcessor
Compute the kNN weight score, used byParallelKNNWeightOutlier
. -
Uses of Processor in elki.outlier.lof.parallel
Classes in elki.outlier.lof.parallel that implement Processor Modifier and Type Class Description class
LOFProcessor
Processor for computing the LOF.class
LRDProcessor
Processor for the "local reachability density" of LOF.class
SimplifiedLRDProcessor
Processor for the "local reachability density" of LOF. -
Uses of Processor in elki.parallel
Fields in elki.parallel declared as Processor Modifier and Type Field Description private Processor[]
ParallelExecutor.BlockArrayRunner. procs
The processor masters that own the instances.private Processor[]
SingleThreadedExecutor.SingleThreadedRunner. procs
The process masters that own the instances.Methods in elki.parallel with parameters of type Processor Modifier and Type Method Description static void
ParallelExecutor. run(DBIDs ids, Processor... procs)
Run a task on all available CPUs.static void
SingleThreadedExecutor. run(DBIDs ids, Processor... procs)
Run a task on a single thread.Constructors in elki.parallel with parameters of type Processor Constructor Description BlockArrayRunner(ArrayDBIDs ids, int start, int end, Processor[] procs)
Constructor.SingleThreadedRunner(DBIDs ids, Processor[] procs)
Constructor. -
Uses of Processor in elki.parallel.processor
Classes in elki.parallel.processor that implement Processor Modifier and Type Class Description class
AbstractDoubleProcessor
Abstract base class for processors that output double values.class
DoubleMinMaxProcessor
Sink collecting minimum and maximum values.class
KDistanceProcessor
Compute the kNN distance for each object.class
KNNProcessor
Processor to compute the kNN of each object.class
WriteDataStoreProcessor<T>
Output channel to store data in aWritableDataStore
.class
WriteDoubleDataStoreProcessor
Write double values into aWritableDoubleDataStore
.class
WriteIntegerDataStoreProcessor
Write int values into aWritableIntegerDataStore
.
-