[ 
https://issues.apache.org/jira/browse/ARROW-15739?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

ASF GitHub Bot updated ARROW-15739:
-----------------------------------
    Labels: pull-request-available  (was: )

> [C++] Bump xsimd to latest version
> ----------------------------------
>
>                 Key: ARROW-15739
>                 URL: https://issues.apache.org/jira/browse/ARROW-15739
>             Project: Apache Arrow
>          Issue Type: Improvement
>          Components: C++
>            Reporter: Yibo Cai
>            Assignee: Yibo Cai
>            Priority: Major
>              Labels: pull-request-available
>          Time Spent: 10m
>  Remaining Estimate: 0h
>
> Besides improvements of Neon any/all implementation, we can simplify below 
> code
> {code:cpp}
> #ifdef ARROW_HAVE_NEON
>   using simd_batch = xsimd::batch<int8_t, xsimd::neon64>;
> #else
>   using simd_batch = xsimd::batch<int8_t, xsimd::sse4_2>;
> #endif
> {code}
> to
> {code:cpp}
> using simd_batch = xsimd::make_sized_batch_t<int8_t, 16>;
> {code}



--
This message was sent by Atlassian Jira
(v8.20.1#820001)

Reply via email to