compute function
It executes the dask collection (dask graph) by the default or given scheduler or get-method function.
dask.compute(da_1, da_2, scheduler="threads")
As it takes multiple dask collections, it reuses the nodes in both graphs. For instance,
x = da.arange(10)
y = (x + 1).sum()
z = (x + 1).mean()
dask.compute(y, z)
So, node (x + 1)
will be reused.