argobots
argobots copied to clipboard
Official Argobots Repository
It runs for 20+ minutes and never finishes. OS: FreeBSD 13.1
configure prints this and continues like this error didn't happen: ``` usage: grep [-abcDEFGHhIiLlmnOoPqRSsUVvwxz] [-A num] [-B num] [-C num] [-e pattern] [-f file] [--binary-files=value] [--color=when] [--context=num] [--directories=action] [--label] [--line-buffered]...
## Pull Request Description This adds a basic registration-based scheduler option to Argobots, which allows users to associate a scheduling policy with each pool that is passed to the scheduler...
This API is still used by some users according to issue so we want to make sure it is still tested. See #355.
#354 introduced a new pool interface, which is more flexible and easy to implement. We should implement the following to fully utilize this new pool interface. - New user APIs...
The following breaks since `ABT_finalize` must be executed by a thread that runs `ABT_init`. ```c #pragma omp parallel for // pthreads for (int i = 0; i < N; i++)...
I've seen a couple of CI failures with this assertion failure, but do not have a good reproducer. This is running on Azure, so under docker on a shared VM,...
We regularly trigger crashes due to ULT stack overrun, mainly caused by 3rd party libraries who are stacking big arrays/structs, or also during lazy symbol resolution of dynamic libs... Since...
It would be useful to have an `ABT_eventual_wait_any` function that takes an array of eventuals and blocks until one has been set (kind of the ABT equivalent of MPI_Waitany). A...
It would be great to have an ABT_thread_sleep(double timeout_ms) function that puts the calling ABT_thread to sleep for a given amount of time (or "at least the given amount of...