CurrentModule = Dagger
The main entrypoint to Dagger is @spawn
:
Dagger.@spawn [option=value]... f(args...; kwargs...)
or spawn
if it's more convenient:
Dagger.spawn(f, Dagger.Options(options), args...; kwargs...)
When called, it creates an DTask
(also known as a "thunk" or
"task") object representing a call to function f
with the arguments args
and
keyword arguments kwargs
. If it is called with other thunks as args/kwargs,
such as in Dagger.@spawn f(Dagger.@spawn g())
, then, in this example, the
function f
gets passed the results of executing g()
, once that result is
available. If g()
isn't yet finished executing, then the execution of f
waits on g()
to complete before executing.
An important observation to make is that, for each argument to
@spawn
/spawn
, if the argument is the result of another @spawn
/spawn
call (thus it's an DTask
), the argument will be computed first, and then
its result will be passed into the function receiving the argument. If the
argument is not an DTask
(instead, some other type of Julia object),
it'll be passed as-is to the function f
(with some exceptions).
The [Options
](@ref Dagger.Options) struct in the second argument position is
optional; if provided, it is passed to the scheduler to control its
behavior. [Options
](@ref Dagger.Options) contains a NamedTuple
of option
key-value pairs, which can be any of:
- Any field in
Sch.ThunkOptions
(see Scheduler and Thunk options) meta::Bool
-- Pass the inputChunk
objects themselves tof
and not the value contained in them.
There are also some extra optionss that can be passed, although they're considered advanced options to be used only by developers or library authors:
get_result::Bool
-- return the actual result to the scheduler instead ofChunk
objects. Used whenf
explicitly constructs aChunk
or when return value is small (e.g. in case of reduce)persist::Bool
-- the result of this Thunk should not be released after it becomes unused in the DAGcache::Bool
-- cache the result of this Thunk such that if the thunk is evaluated again, one can just reuse the cached value. If it’s been removed from cache, recompute the value.
Let's see a very simple directed acyclic graph (or DAG) constructed with Dagger:
using Dagger
add1(value) = value + 1
add2(value) = value + 2
combine(a...) = sum(a)
p = Dagger.@spawn add1(4)
q = Dagger.@spawn add2(p)
r = Dagger.@spawn add1(3)
s = Dagger.@spawn combine(p, q, r)
@assert fetch(s) == 16
The thunks p
, q
, r
, and s
have the following structure:
The final result (from fetch(s)
) is the obvious consequence of the operation:
add1(4) + add2(add1(4)) + add1(3)
(4 + 1) + ((4 + 1) + 2) + (3 + 1) == 16
Dagger's @spawn
macro works similarly to @async
and Threads.@spawn
: when
called, it wraps the function call specified by the user in an
DTask
object, and immediately places it onto a running scheduler,
to be executed once its dependencies are fulfilled.
x = rand(400,400)
y = rand(400,400)
zt = Dagger.@spawn x * y
z = fetch(zt)
@assert isapprox(z, x * y)
One can also wait
on the result of @spawn
and check completion status with
isready
:
x = Dagger.@spawn sleep(10)
@assert !isready(x)
wait(x)
@assert isready(x)
Like @async
and Threads.@spawn
, Dagger.@spawn
synchronizes with
locally-scoped @sync
blocks:
function sleep_and_print(delay, str)
sleep(delay)
println(str)
end
@sync begin
Dagger.@spawn sleep_and_print(3, "I print first")
end
wait(Dagger.@spawn sleep_and_print(1, "I print second"))
One can also safely call @spawn
from another worker (not ID 1), and it will be executed correctly:
x = fetch(Distributed.@spawnat 2 Dagger.@spawn 1+2) # fetches the result of `@spawnat`
x::DTask
@assert fetch(x) == 3 # fetch the result of `@spawn`
This is useful for nested execution, where an @spawn
'd thunk calls @spawn
. This is detailed further in Dynamic Scheduler Control.
If a thunk errors while running under the eager scheduler, it will be marked as
having failed, all dependent (downstream) thunks will be marked as failed, and
any future thunks that use a failed thunk as input will fail. Failure can be
determined with fetch
, which will re-throw the error that the
originally-failing thunk threw. wait
and isready
will not check whether a
thunk or its upstream failed; they only check if the thunk has completed, error
or not.
This failure behavior is not the default for lazy scheduling (Lazy API),
but can be enabled by setting the scheduler/thunk option (Scheduler and Thunk options)
allow_error
to true
. However, this option isn't terribly useful for
non-dynamic usecases, since any thunk failure will propagate down to the output
thunk regardless of where it occurs.
Alongside the modern eager API, Dagger also has a legacy lazy API, accessible
via @par
or delayed
. The above computation can be executed with the lazy
API by substituting @spawn
with @par
and fetch
with collect
:
p = Dagger.@par add1(4)
q = Dagger.@par add2(p)
r = Dagger.@par add1(3)
s = Dagger.@par combine(p, q, r)
@assert collect(s) == 16
or similarly, in block form:
s = Dagger.@par begin
p = add1(4)
q = add2(p)
r = add1(3)
combine(p, q, r)
end
@assert collect(s) == 16
Alternatively, if you want to compute but not fetch the result of a lazy
operation, you can call compute
on the thunk. This will return a Chunk
object which references the result (see Chunks for more details):
x = Dagger.@par 1+2
cx = compute(x)
cx::Chunk
@assert collect(cx) == 3
Note that, as a legacy API, usage of the lazy API is generally discouraged for modern usage of Dagger. The reasons for this are numerous:
- Nothing useful is happening while the DAG is being constructed, adding extra latency
- Dynamically expanding the DAG can't be done with
@par
anddelayed
, making recursive nesting annoying to write - Each call to
compute
/collect
starts a new scheduler, and destroys it at the end of the computation, wasting valuable time on setup and teardown - Distinct schedulers don't share runtime metrics or learned parameters, thus causing the scheduler to act less intelligently
- Distinct schedulers can't share work or data directly
While Dagger generally "just works", sometimes one needs to exert some more
fine-grained control over how the scheduler allocates work. There are two
parallel mechanisms to achieve this: Scheduler options (from
Sch.SchedulerOptions
) and Thunk options (from
Sch.ThunkOptions
). These two options structs contain many shared
options, with the difference being that Scheduler options operate
globally across an entire DAG, and Thunk options operate on a thunk-by-thunk
basis.
Scheduler options can be constructed and passed to collect()
or compute()
as the keyword argument options
for lazy API usage:
t = Dagger.@par 1+2
opts = Dagger.Sch.SchedulerOptions(;single=1) # Execute on worker 1
compute(t; options=opts)
collect(t; options=opts)
Thunk options can be passed to @spawn/spawn
, @par
, and delayed
similarly:
# Execute on worker 1
Dagger.@spawn single=1 1+2
Dagger.spawn(+, Dagger.Options(;single=1), 1, 2)
delayed(+; single=1)(1, 2)