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 classParallelGeneralizedDBSCAN.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 classKMeansProcessor<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 classKNNWeightProcessorCompute 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 classLOFProcessorProcessor for computing the LOF.classLRDProcessorProcessor for the "local reachability density" of LOF.classSimplifiedLRDProcessorProcessor 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. procsThe processor masters that own the instances.private Processor[]SingleThreadedExecutor.SingleThreadedRunner. procsThe process masters that own the instances.Methods in elki.parallel with parameters of type Processor Modifier and Type Method Description static voidParallelExecutor. run(DBIDs ids, Processor... procs)Run a task on all available CPUs.static voidSingleThreadedExecutor. 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 classAbstractDoubleProcessorAbstract base class for processors that output double values.classDoubleMinMaxProcessorSink collecting minimum and maximum values.classKDistanceProcessorCompute the kNN distance for each object.classKNNProcessorProcessor to compute the kNN of each object.classWriteDataStoreProcessor<T>Output channel to store data in aWritableDataStore.classWriteDoubleDataStoreProcessorWrite double values into aWritableDoubleDataStore.classWriteIntegerDataStoreProcessorWrite int values into aWritableIntegerDataStore.
-