If I am using Distributed
, is there a way to print diagnostic information from the different workers? I’m thinking of something like this:
@everywhere x = rand();
and I would like to be able to print what value of x
each worker has.
If I am using Distributed
, is there a way to print diagnostic information from the different workers? I’m thinking of something like this:
@everywhere x = rand();
and I would like to be able to print what value of x
each worker has.
@everywhere println(x) should work I think