-
Notifications
You must be signed in to change notification settings - Fork 197
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
Replace map_along_rows
with matrixVectorOp
#911
Merged
Merged
Changes from all commits
Commits
Show all changes
30 commits
Select commit
Hold shift + click to select a range
7f11225
Integrate accumulate_into_selected into raft prims
Nyrio 529931d
Remove accumulate_into_selected
Nyrio 0f284b0
Merge remote-tracking branch 'origin/branch-22.12' into enh-ann-accum…
Nyrio 6a61537
Replace map_along_rows with matrixVectorOp
Nyrio e184ebf
Merge remote-tracking branch 'origin/branch-22.12' into enh-map-along…
Nyrio 0a98482
Start adding support for arbitrary types in linewiseOp
Nyrio eafa61e
Allow different types for output, matrix and vector(s) in mdspan-base…
Nyrio 74309ed
Call cub histogram with signed type to avoid a warning breaking compi…
Nyrio df7cfb5
Start adding support for different output/matrix/vector types in MatV…
Nyrio 8264462
Fix shared mem buffering offset in linewise kernels
Nyrio e4a8b66
Pass custom op to naiveMat
Nyrio 938b180
Support different output/matrix/vector(s) types in naiveMatVec
Nyrio c85ee9b
Test matrix-vector op with different matrix / vector types
Nyrio be142c6
Fix linewiseOp VecRows kernels
Nyrio a850d85
Fix linewiseOp VecCols kernels
Nyrio e44bcc4
Merge OutT=MatT because linewiseOp only supports one input/output mat…
Nyrio 351fddc
Merge remote-tracking branch 'origin/branch-22.12' into enh-map-along…
Nyrio dcfd962
Replace for_each with linalg::add + fix syntax error
Nyrio 4718e5b
Clang-format fix
Nyrio fc55921
used alignedLen instead of totalLen in max block number calculation
Nyrio 5421dda
Add misalignments to matrix-vector-op test
Nyrio ccdc961
Extend matrix-vector op benchmark
Nyrio b5c4d01
Merge remote-tracking branch 'origin/branch-22.12' into enh-map-along…
Nyrio f2f67db
Apply changes to new padded kernel (note: test is still failing but a…
Nyrio 1450bae
Put itertools in util namespace
Nyrio 7bcbbe2
Remove TPB from public API (it wasn't even forwarded to the actual im…
Nyrio c7942b0
Fix utils -> util
Nyrio d28a3c5
Merge remote-tracking branch 'origin/branch-22.12' into enh-map-along…
Nyrio 68fd977
Move product auxiliary function to itertools::detail
Nyrio b2be0c1
Add test case for int8_t matrix with float vectors
Nyrio 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 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
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.
Are any of the changes in this file going to break users downstream (such as cuml)?
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.
It won't break cuML because all template types are inferred in calls to
matrixVectorOp
.It could in theory break other projects if they provide the template list explicitly, but I'm not aware of any.