Skip to content

[Feature request] function that tells what is the current strategy #625

@Jean-Romain

Description

@Jean-Romain

Let define a simplified function in a package that looks like that:

pkg_fun <- function(fun, x) {
   f <- vector("list", length(x))
   for (i in seq_along(x)) {
      f[[i]] <- future::future({ fun(x) })
   }

   # some code to handle resolution and get values of futures...
}

Users can use it like that

library(pkg)
library(future)
plan(multisession)
pkg_fun(myfunction, mydata)

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:

  1. myfunction may already be parallelized in C++ with OpenMP. Testing the strategy allows to enable or disable OpenMP and avoid nested parallelism
  2. mydata can contain non serializable objects and the code subsequently fails with no informative error for parallel strategies (but works with plan(sequential)). Being able to catch those cases early would allow to handle them nicely.
  3. 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 in future. Something like that maybe

future::is_parallel_strategy()
future::get_strategy_workers()
future::is_remote_stragety()
future::is_nested_strategy()
# ...

Thanks

Metadata

Metadata

Type

No type

Projects

No projects

Relationships

None yet

Development

No branches or pull requests

Issue actions