-
Notifications
You must be signed in to change notification settings - Fork 143
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add
Reader.read_row
for decoding into caller-provided buffer.
`Reader.read_row` is an alternative to `Reader.next_row`. * `Reader.next_row` is convenient when the caller doesn't want to manage their own buffer, and doesn't mind having extended borrows on `Reader` to accommodate `Row` data. * OTOH the new `Reader.read_row` avoids an extra copy in some scanarios which may lead to better runtime performance - see the benchmark results below. The commit results in the followin performance gains seen in the recently introduced `row-by-row/128x128-4k-idat` benchmark: time: [-16.414% -16.196% -15.969%] (p = 0.00 < 0.05) time: [-15.570% -15.218% -14.856%] (p = 0.00 < 0.05) time: [-16.101% -15.864% -15.629%] (p = 0.00 < 0.05)
- Loading branch information
1 parent
58c71b4
commit 51a3d30
Showing
2 changed files
with
50 additions
and
23 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
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