Package | Description |
---|---|
dev.nm.misc.parallel | |
tech.nmfin.infantino2010 |
Modifier and Type | Method and Description |
---|---|
<T> void |
ParallelExecutor.conditionalForEach(boolean conditionToParallelize,
Iterable<T> iterable,
IterationBody<T> body)
|
void |
ParallelExecutor.conditionalForLoop(boolean conditionToParallelize,
int start,
int end,
int increment,
LoopBody body)
Runs a parallel for-loop only if
conditionToParallelize is true . |
void |
ParallelExecutor.conditionalForLoop(boolean conditionToParallelize,
int start,
int end,
LoopBody body)
Calls
conditionalForLoop
with increment of 1. |
<T> List<T> |
ParallelExecutor.executeAll(Callable<T>... tasks)
Executes an arbitrary number of
Callable tasks, and returns a
list of results in the same order. |
<T> List<T> |
ParallelExecutor.executeAll(List<? extends Callable<T>> tasks)
Executes a list of
Callable tasks, and returns a list of results
in the same sequential order as tasks . |
<T> void |
ParallelExecutor.forEach(Iterable<T> iterable,
IterationBody<T> body)
Runs a "foreach" loop in parallel.
|
void |
ParallelExecutor.forLoop(int start,
int end,
int increment,
LoopBody body)
Runs a for-loop in parallel.
|
void |
ParallelExecutor.forLoop(int start,
int end,
LoopBody body)
Calls
forLoop
with increment of 1. |
Modifier and Type | Method and Description |
---|---|
Infantino2010PCA.Signal |
Infantino2010PCA.getSignal(Matrix X) |
Copyright © 2010-2020 NM FinTech Ltd.. All Rights Reserved.