Rich-T-kid commented on PR #10813: URL: https://github.com/apache/arrow-rs/pull/10813#issuecomment-5447156434
**Boolean** ``` take bool 1024 1.49 1041.9±1.67ns ? ?/sec 1.00 699.9±6.85ns ? ?/sec take bool 512 1.36 577.0±1.85ns ? ?/sec 1.00 424.3±12.47ns ? ?/sec take bool null indices 1024 1.00 773.3±28.07ns ? ?/sec 1.11 857.5±2.15ns ? ?/sec take bool null values 1024 1.67 2.0±0.00µs ? ?/sec 1.00 1220.7±1.38ns ? ?/sec take bool null values null indices 1024 1.20 1451.8±12.63ns ? ?/sec 1.00 1210.4±1.58ns ? ?/sec ``` **StringView** (take_primtives + take_null call) : https://github.com/apache/arrow-rs/blob/9500647b24ae6c9d271daa9c7d0487deb8849a16/arrow-select/src/take.rs#L634 ``` take stringview 1024 1.17 847.3±2.80ns ? ?/sec 1.00 726.7±1.38ns ? ?/sec take stringview 512 1.21 492.0±2.85ns ? ?/sec 1.00 405.7±2.26ns ? ?/sec take stringview null indices 1024 1.00 845.1±2.67ns ? ?/sec 1.00 842.7±0.81ns ? ?/sec take stringview null indices 512 1.00 506.3±2.52ns ? ?/sec 1.11 563.8±1.16ns ? ?/sec take stringview null values 1024 1.28 1838.4±2.82ns ? ?/sec 1.00 1434.2±0.74ns ? ?/sec take stringview null values null indices 1024 1.00 1671.2±2.42ns ? ?/sec 1.01 1696.0±1.39ns ? ?/sec ``` **take_record_batch** (as a wrapper for `take_record_batch_unchecked`) ``` take_record_batch 5 primitive cols no nulls 1024 1.15 3.4±0.01µs ? ?/sec 1.00 3.0±0.01µs ? ?/sec take_record_batch 6 string/binary cols no nulls 1024 1.01 27.2±0.03µs ? ?/sec 1.00 26.9±0.04µs ? ?/sec take_record_batch 7 mixed cols null values 1024 1.24 17.8±0.10µs ? ?/sec 1.00 14.4±0.08µs ? ?/sec take_record_batch 7 mixed cols null values null indices 1024 1.03 14.1±0.04µs ? ?/sec 1.00 13.6±0.03µs ? ?/sec ``` @Jefffrey this PR is also ready for review. Thanks! -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
