WillAyd commented on PR #280: URL: https://github.com/apache/arrow-nanoarrow/pull/280#issuecomment-1688662632
I set up a repo to compare this from Cython: https://github.com/WillAyd/cython-nanoarrow The benchmarks for me look something like this: ```python In [1]: from comparisons import ComparisonManager ...: mgr = ComparisonManager() ...: %timeit mgr.unpack() ...: %timeit mgr.unpack_no_shift() 547 µs ± 21 µs per loop (mean ± std. dev. of 7 runs, 1,000 loops each) 40.5 µs ± 321 ns per loop (mean ± std. dev. of 7 runs, 10,000 loops each) ``` Not sure what makes Python here different than the R / C benchmarks we've tried before... -- 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]
