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 building the remotely the array as specified in the documentation:
ras = [@spawnat p wrong_name() for p inworkers()[1:4]]
ras =reshape(ras,(2,2))
D =DArray(ras)
Assuming the wrong_name() throws an exception, the error will throw from DistributedArray code MethodError: no method matching size(::RemoteException)here.
The only way for me to debug this is to modify the code and add a line [fetch(r) for r in ras] after line 1.
This is not convenient for me because the fetch will induce a lot of communication so I need to put it before and remove it after debugging.
Do you know a better way to check this ? Thank you
The text was updated successfully, but these errors were encountered:
When building the remotely the array as specified in the documentation:
Assuming the
wrong_name()
throws an exception, the error will throw from DistributedArray codeMethodError: no method matching size(::RemoteException)
here.The only way for me to debug this is to modify the code and add a line
[fetch(r) for r in ras]
after line 1.This is not convenient for me because the
fetch
will induce a lot of communication so I need to put it before and remove it after debugging.Do you know a better way to check this ? Thank you
The text was updated successfully, but these errors were encountered: