We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Suppose I want to allow the user to run something like
function floop_map!(f, ys, xs, ex = ThreadedEx()) @floop ex for i in eachindex(ys, xs) @inbounds ys[i] = f(xs[i]) end return ys end end
without threads (ie sequentially). Is there a "placeholder" executor I can use for this purpose?
The text was updated successfully, but these errors were encountered:
From the documentation, I believe SequentialEx() is what you are looking for. See the Executors section: https://juliahub.com/docs/FLoops/99zMn/0.1.10/tutorials/parallel/#tutorials-executor
Sorry, something went wrong.
No branches or pull requests
Suppose I want to allow the user to run something like
without threads (ie sequentially). Is there a "placeholder" executor I can use for this purpose?
The text was updated successfully, but these errors were encountered: