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
Evalfile does not work when running with a remote call:
addprocs(2)
# toeval.jl just contains 99
r = remotecall_fetch(1, evalfile, "toeval.jl")
println("r on 1 == $r") # r on 1 == 99
# DOES NOT WORK:
r = remotecall_fetch(2, evalfile, "toeval.jl")
println("r on 2 == $r") # r on 2 == nothing
I'm not sure whether this is a bug or whether this is just a limitation of evalfile, as it says in its help: "No other processing (path searching, fetching from node 1, etc.) is performed."
The text was updated successfully, but these errors were encountered:
This was originally done to avoid sending unnecessary data when files were loaded remotely for side-effects only. The way the code is structured now I think it is no longer necessary.
Evalfile does not work when running with a remote call:
I'm not sure whether this is a bug or whether this is just a limitation of evalfile, as it says in its help: "No other processing (path searching, fetching from node 1, etc.) is performed."
The text was updated successfully, but these errors were encountered: