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
Was just wondering if it would be possible to allow for an argument to specify the maximum time by which each expression should be allowed to run? If I benchmark a given expression over a grid of values I now often run into problems whereby some combinations take a very long time to finish & I would like those to be terminated after a given time.
Was just wondering if it would be possible to allow for an argument to specify the maximum time by which each expression should be allowed to run? If I benchmark a given expression over a grid of values I now often run into problems whereby some combinations take a very long time to finish & I would like those to be terminated after a given time.
I presume this could be done with some of the solutions mentioned here, https://stackoverflow.com/questions/7891073/time-out-an-r-command-via-something-like-try, e.g. using
R.utils::withTimeout()
orsetTimeLimit
? (though these functions may only be able to interrupt R and not C or C++ coded functions)The text was updated successfully, but these errors were encountered: