You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I was trying to use Distributed package to accelerate wflow model, this error has occured. I have tried Pkg.instantiate() and Pkg.resolve(), but it still doesn't work. How can I fix this problem or try another way to accelerate wflow? Thank you!
The text was updated successfully, but these errors were encountered:
Distributed is a dependency of the Graphs package, so it should be available. Is Distributed part of the Manifest.toml file?
You could try to run Pkg.update() to check if this resolves the issue.
Note that we do not make use of Distributed in Wflow directly (it is not an explicit dependency).
Since calibration of model parameters requires hundreds of simulations, the speed of the model is critical. I am using the wflow_hbv model. After setting nthreads=10, the speed and cpu usage of the model is not significantly improved. So I try to modify the update function in the surface_routing function to parallelize the operation to improve the speed. But I got an error when using the distributed package. I can find distributed in the Manifest.toml file, but not in the Graphs package, and I still can't use distributed after trying Pkg.update().
When I was trying to use Distributed package to accelerate wflow model, this error has occured. I have tried
Pkg.instantiate()
andPkg.resolve()
, but it still doesn't work. How can I fix this problem or try another way to accelerate wflow? Thank you!The text was updated successfully, but these errors were encountered: