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
Resolving multiple logical indices in a loop and writing the results to a contiguous buffer allows for vectorization and simplifies the work in supporting ChunkedArray directly in the Take kernel.
Component(s)
C++
The text was updated successfully, but these errors were encountered:
…ts (#41561)
### Rationale for this change
I want `ResolveMany` to support me in the implementation of `Take` that doesn't `Concatenate` all the chunks from a `ChunkedArray` `values` parameter.
### What changes are included in this PR?
- Implementation of `ChunkResolver::ResolveMany()`
- Addition of missing unit tests for `ChunkResolver`
### Are these changes tested?
Yes. By new unit tests.
### Are there any user-facing changes?
No. `ChunkResolver` is an internal API at the moment (see #34535 for future plans).
* GitHub Issue: #41560
Authored-by: Felipe Oliveira Carvalho <felipekde@gmail.com>
Signed-off-by: Felipe Oliveira Carvalho <felipekde@gmail.com>
…it tests (apache#41561)
### Rationale for this change
I want `ResolveMany` to support me in the implementation of `Take` that doesn't `Concatenate` all the chunks from a `ChunkedArray` `values` parameter.
### What changes are included in this PR?
- Implementation of `ChunkResolver::ResolveMany()`
- Addition of missing unit tests for `ChunkResolver`
### Are these changes tested?
Yes. By new unit tests.
### Are there any user-facing changes?
No. `ChunkResolver` is an internal API at the moment (see apache#34535 for future plans).
* GitHub Issue: apache#41560
Authored-by: Felipe Oliveira Carvalho <felipekde@gmail.com>
Signed-off-by: Felipe Oliveira Carvalho <felipekde@gmail.com>
Describe the enhancement requested
Resolving multiple logical indices in a loop and writing the results to a contiguous buffer allows for vectorization and simplifies the work in supporting
ChunkedArray
directly in theTake
kernel.Component(s)
C++
The text was updated successfully, but these errors were encountered: