| with_daemons | R Documentation |
Evaluate an expression using a specific compute profile.
with_daemons(.compute, expr)
local_daemons(.compute, frame = parent.frame())
.compute |
(character) name of the compute profile. Each profile has its
own independent set of daemons. |
expr |
(expression) to evaluate using the compute profile. |
frame |
(environment) scope for the compute profile setting. |
Will error if the specified compute profile is not yet set up.
For with_daemons: the return value of expr.
For local_daemons: invisible NULL.
daemons(1, dispatcher = FALSE, .compute = "cpu")
daemons(1, dispatcher = FALSE, .compute = "gpu")
with_daemons("cpu", {
m1 <- mirai(Sys.getpid())
})
with_daemons("gpu", {
m2 <- mirai(Sys.getpid())
m3 <- mirai(Sys.getpid(), .compute = "cpu")
local_daemons("cpu")
m4 <- mirai(Sys.getpid())
})
m1[]
m2[] # different to m1
m3[] # same as m1
m4[] # same as m1
with_daemons("cpu", daemons(0))
with_daemons("gpu", daemons(0))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.