control.stiles {INLA}R Documentation

control.stiles

Description

Control variables in ⁠control.*⁠ for use with inla(). The functions can be used to TAB-complete arguments, and returns a list of the default control arguments, unless overridden by specific input arguments.

Usage

control.stiles(
  verbose = FALSE,
  block.size = -1,
  tile.size = -1,
  tile.type = c("default", "auto", "sparse", "semisparse", "dense"),
  param = rep(NA, 32)
)

inla.set.control.stiles.default(...)

Arguments

verbose

Show detailed output (default FALSE)

block.size

(integer) Preferred number of rhs's in each parallel solve. Used to split many rhs's into threads. Default value (-1) is to use the 'tile.size' from sTiles, which is a reasonable tradeoff between speed and memory use. A higher value will increase memory usage.

tile.size

(integer) Size of the tiles (-1 is default and adaptive).

tile.type

(character) The storage type for the tiles. One of "default", "auto", "dense", "semisparse" or "sparse". "auto" will chose type according to heuristics.

param

An integer vector of parameters (variable length). Default values are given by '-1' or 'NA' See sTiles documentation for explaination of these parameters

...

Named arguments passed on to the main function

Details

Extra options controlling the sTiles library

See Also

Other control: control.bgev(), control.compute(), control.expert(), control.family(), control.fixed(), control.gcpo(), control.group(), control.hazard(), control.inla(), control.lincomb(), control.link(), control.lp.scale(), control.mix(), control.mode(), control.numa(), control.pardiso(), control.pom(), control.predictor(), control.scopy(), control.sem(), control.taucs(), control.update(), control.vb()


[Package INLA version 26.08.22 Index]