-
Notifications
You must be signed in to change notification settings - Fork 921
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Cleanup
iterator.cuh
and add fixed point support for `scalar_option…
…al_accessor` (#10999) This PR does the following: * Cleanup `iterator.cuh`, enforcing `const` qualifier for accessors' `operator()`. * Remove doxygen for the `operator()` functions, as they seem trivial: the struct iterators already state clearly their purpose. * Make all the `operator()` functions `__device__` callable only: there is no need to call them (and they are never called) from host code. * Add `template <bool safe = false>` for `make_validity_iterator(scalar const&)` overload, to make it having identical signature as the `make_validity_iterator(column_device_view const&)` overload. * Add fixed point support for `scalar_optional_accessor`. This unblocks nested types support in `lists::contains` (#10548), which needs fixed point support for `scalar_optional_accessor`. Authors: - Nghia Truong (https://github.com/ttnghia) Approvers: - Bradley Dice (https://github.com/bdice) - Karthikeyan (https://github.com/karthikeyann) URL: #10999
- Loading branch information
Showing
1 changed file
with
18 additions
and
48 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters