mclapply {multicore}
Description
mclapply is a parallelized version of lapply, it returns a list of the same length as X, each element of which is the result of applying FUN to the corresponding element of X.
Usage
mclapply(X, FUN, ..., mc.preschedule = TRUE, mc.set.seed = TRUE,
mc.silent = FALSE, mc.cores = getOption("cores"), mc.cleanup = TRUE)
Arguments
- X
- a vector (atomic or list) or an expressions vector. Other objects (including classed objects) will be coerced by
as.list. - FUN
- the function to be applied to each element of
X - ...
- optional arguments to
FUN - mc.preschedule
- if set to
TRUEthen the computation is first divided to (at most) as many jobs are there are cores and then the jobs are started, each job possibly covering more than one value. If set toFALSEthen one job is spawned for each value ofXsequentially (if used withmc.set.seed=FALSEthen random number sequences will be identical for all values). The former is better for short computations or large number of values inX, the latter is better for jobs that have high variance of completion time and not too many values ofX. - mc.set.seed
- if set to
TRUEthen each parallel process first sets its seed to something different from other processes. Otherwise all processes start with the same (namely current) seed. - mc.silent
- if set to
TRUEthen all output on stdout will be suppressed for all parallel processes spawned (stderr is not affected). - mc.cores
- The number of cores to use, i.e. how many processes will be spawned (at most)
- mc.cleanup
- if set to
TRUEthen all children that have been spawned by this function will be killed (by sendingSIGTERM) before this function returns. Under normal circumstancesmclapplywaits for the children to deliver results, so this option usually has only effect whenmclapplyis interrupted. If set toFALSEthen child processes are collected, but not forcefully terminated. As a special case this argument can be set to the signal value that should be used to kill the children instead ofSIGTERM.
Details
mclapply is a parallelized version of lapply, but there is an important difference: mclapply does not affect the calling environment in any way, the only side-effect is the delivery of the result (with the exception of a fall-back to lapply when there is only one core).
By default (mc.preschedule=TRUE) the input vector/list X is split into as many parts as there are cores (currently the values are spread across the cores sequentially, i.e. first value to core 1, second to core 2, ... (core + 1)-th value to core 1 etc.) and then one process is spawned to each core and the results are collected.
Due to the parallel nature of the execution random numbers are not sequential (in the random number sequence) as they would be in lapply. They are sequential for each spawned process, but not all jobs as a whole.
In addition, each process is running the job inside try(..., silent=TRUE) so if error occur they will be stored as try-error objects in the list. Note: the number of file descriptors is usually limited by the operating system, so you may have trouble using more than 100 cores or so (see ulimit -n or similar in your OS documentation) unless you raise the limit of permissible open file descriptors (fork will fail with "unable to create a pipe").
Values
A list.
See Also
parallel, collect
Examples
Documentation reproduced from package multicore, version 0.1-7. License: GPL-2
