Skip to contents

Options to set up ibis for parallel processing with future

Usage

ibis_future(
  cores = getOption("ibis.nthread"),
  strategy = getOption("ibis.futurestrategy")
)

Arguments

cores

A numeric number stating the number of cores to use.

strategy

A character denoting the strategy to be used for future. See help of future for options. (Default: "multisession").

Value

None

See also

future

Examples

if (FALSE) {
# Starts future job
ibis_future(cores = 4)
}