-
Notifications
You must be signed in to change notification settings - Fork 86
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Feature request] function that tells what is the current strategy #625
Comments
> current_plan <- plan()
> current_plan
sequential:
- args: function (..., envir = parent.frame())
- tweaked: FALSE
- call: NULL
> str(current_plan)
function (..., envir = parent.frame())
- attr(*, "class")= chr [1:5] "FutureStrategy" "sequential" "uniprocess" "future" ...
> inherits(current_plan, "sequential")
[1] TRUE
> |
Regarding your developer needs of being able to conditional evaluate via futures if the set future strategy supports it or not: Just as a heads-up, I'm working on adding support for specifying "resource" requirements per future. It's still another year or so, but the gist is that you'll be able to do things like: f <- future({ some expression }, resources = ~ !multithreading) to say the future should be evaluated without multithreading. For non-serializable globals, there's also a plan to improve on that, cf. https://github.com/HenrikBengtsson/marshal. But, also not anywhere near being ready. |
You might also be interested in |
Thanks for your reply. Testing the class of the current plan is already the first step of my parser. But the entire code is more complex as it also tries to extract the number of workers from the plan. |
Per future resource requirements would indeed be awesome.
(sry about slightly OT comment, did not find a more relevant issue to post this) EDIT: backup and restore attributes of plan function ( did not realize they are dropped by ``formals<-`) |
Let define a simplified function in a package that looks like that:
Users can use it like that
There is no way for the developer to know what is the plan used by the user. It is sequential? multicore on a single machine? multiple remote machine? I do agree that most of the time the developer do no need to know. But I'm personally facing multiple cases were I need to know to handle stuff internally or to throw informative warning or error. For examples:
myfunction
may already be parallelized in C++ with OpenMP. Testing the strategy allows to enable or disable OpenMP and avoid nested parallelismmydata
can contain non serializable objects and the code subsequently fails with no informative error for parallel strategies (but works withplan(sequential)
). Being able to catch those cases early would allow to handle them nicely.myfunction
can return non serializable objects. Same issue than 2.So far I'm using a custom parser than analyses the ouptut of
future::plan()
but I think it would be a useful addition to add easy to parse functions for developpers infuture
. Something like that maybeThanks
The text was updated successfully, but these errors were encountered: