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
I was wondering if it would be possible to configure the use of pmap, or rather, to avoid it? The reason is that Pluto notebooks are incompatible with the Distributed standard library, so it is impossible to use this package from within Pluto since the use of pmap is hard coded.
I sometimes make use of the pattern
functionmy_function(input; map = pmap)
...map(f, x)
end
and that way, the user can pass in another mapping function, for example my_function(input; map = map). Maybe the mapping function could be added as an option?
The text was updated successfully, but these errors were encountered:
Hello and thank you for this neat package!
I was wondering if it would be possible to configure the use of
pmap
, or rather, to avoid it? The reason is that Pluto notebooks are incompatible with theDistributed
standard library, so it is impossible to use this package from within Pluto since the use ofpmap
is hard coded.I sometimes make use of the pattern
and that way, the user can pass in another mapping function, for example
my_function(input; map = map)
. Maybe the mapping function could be added as an option?The text was updated successfully, but these errors were encountered: