-
Notifications
You must be signed in to change notification settings - Fork 4k
ARROW-9042: [C++] Add Subtract and Multiply arithmetic kernels with wrap-around behavior #7341
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
Closed
Changes from all commits
Commits
Show all changes
23 commits
Select commit
Hold shift + click to select a range
00bb29f
safe add
kszucs d2b37aa
clang format
kszucs bd94196
remove flippedop
kszucs 047d7d2
deduce error
kszucs f1fce32
add error as a comment
kszucs 0a44c14
left char behind
kszucs 24835c2
fix tests and use ScalarBinary exec function to support multiple inpu…
kszucs b75327c
specialize Add operation explicitly for smaller integer types, please…
kszucs b5bb26f
unchecked add, sub, mul
kszucs 82b8dd0
format, remove comments
kszucs af3e452
fix op
kszucs 6d9924b
failing ubsan test for signed integer overflow
kszucs 744c27d
avoid undefined signed integer overflow
kszucs c12ca4f
more overflow tests
kszucs 72c33e6
Apply suggestions from Ben
kszucs 9f34b32
renames
kszucs 85e98f9
make uint16 an exceptional case for multiplication
kszucs 83c442b
fix arithmetics with scalar operands
kszucs 3d7e5eb
ubsan
kszucs 19ad8ca
compare as string workaround until we have AssertArraysAlmostEqual
kszucs d81d00f
scalar - scalar tests
kszucs 9c2921a
cleanup tests
bkietz 870bcc1
silence conversion warning error for MSVC
bkietz File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If you're going to remove this, you absolutely must write benchmarks to show that the more general version is not slower.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Writing a benchmark, the jira to track it https://issues.apache.org/jira/browse/ARROW-9079