You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@arrow.apache.org by "Liya Fan (Jira)" <ji...@apache.org> on 2020/04/08 02:18:00 UTC

[jira] [Commented] (ARROW-8299) [C++] Reusable "optional ParallelFor" function for optional use of multithreading

    [ https://issues.apache.org/jira/browse/ARROW-8299?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17077752#comment-17077752 ] 

Liya Fan commented on ARROW-8299:
---------------------------------

[~wesm] I notice the assignee is left empty. May I try to provide a patch for this issue?

> [C++] Reusable "optional ParallelFor" function for optional use of multithreading
> ---------------------------------------------------------------------------------
>
>                 Key: ARROW-8299
>                 URL: https://issues.apache.org/jira/browse/ARROW-8299
>             Project: Apache Arrow
>          Issue Type: New Feature
>          Components: C++
>            Reporter: Wes McKinney
>            Priority: Major
>
> We often see code like
> {code}
>     if (use_threads) {
>       return ::arrow::internal::ParallelFor(n, Func);
>     } else {
>       for (size_t i = 0; i < n; ++i) {
>         RETURN_NOT_OK(Func(i));
>       }
>       return Status::OK();
> {code}
> It might be nice to have a helper function to do this. It doesn't even need to be an inline template, it could be a precompiled function accepting {{std::function<Status(int)>}}



--
This message was sent by Atlassian Jira
(v8.3.4#803005)