-
Notifications
You must be signed in to change notification settings - Fork 7
Split #75
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
Merged
Merged
Split #75
Changes from 24 commits
Commits
Show all changes
46 commits
Select commit
Hold shift + click to select a range
7e0d060
add: ClArray.chunk*
IgorErin babe90e
add: Split
IgorErin b30a9f8
add: ClArray.chunk* tests
IgorErin 0cfe112
add: ClArray.append
IgorErin a79542d
add: Vector.map
IgorErin d0133ec
wip: Vector.map2
IgorErin 2db0be2
merge: dev
IgorErin 4b7c3ed
wip: expand refactor, tests in progress
IgorErin 7d1ee0e
add: Reduce.ByKey.Option.sequintialSegments
IgorErin 98d41dd
add: ClArray.assign tests
IgorErin 1f273d1
add: ClArray.concat tests
IgorErin 830b2f9
wip: ClArray.pairwise
IgorErin 92b186f
add: ClArray.pairwise
IgorErin 089e11e
add: Matrix.Rows.Convert
IgorErin 6f2adb3
wip: SpGeMM expand phase
IgorErin cf48196
add: CSR.RowsLengths tests
IgorErin a60b12a
add: spgemm row wise
IgorErin 3d0b07b
refactor: formatting
IgorErin c75fd57
wip: ArithmeticOps
IgorErin 2441558
refactor: formatting
IgorErin abdd46c
refactor: ...
IgorErin 7bdaf88
refactor: include gather tests
IgorErin ad66391
refactor: ClArray.assign -> *.blit
IgorErin 5b94160
refactor: paths
IgorErin 9cc2155
wip: benchmarks
IgorErin 9e8b9bc
refactor: benchmarks
IgorErin b25bc97
refactor: benchmarks
IgorErin 1d45950
refactor: README
IgorErin 2a5617b
refactor: operations early binding
IgorErin d9dd757
wip: SpGeMM benchmark
IgorErin f5c6fe6
fix: count in CSR.byRows
IgorErin ad9b528
add: CSR.byRows tests
IgorErin acaa0c1
fix: host COO -> CSR
IgorErin a449754
add: host tests
IgorErin 2972803
refactor: paths
IgorErin efa50f4
refactor: clean
IgorErin 655fe67
refactor: list instead array in LIL
IgorErin 7f3cb90
refactor: SpGeMM.expand
IgorErin bf1cd58
refactor: tests
IgorErin 76de19b
refactor: benchmark workflow
IgorErin 4ea099c
refactor: formatting
IgorErin 743491e
merge: dev
IgorErin ecb4eb5
refactor: remove *.map2ToCOO
IgorErin dffcb5f
refactor: Matrix.map*, ClArray.choose
IgorErin 1e3b53c
refactor: Dense.reduce
IgorErin 45e4536
refactor: Matrix.AtLeastOne
IgorErin 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,23 +25,24 @@ GraphBLAS# is a GPGPU-based [GraphBLAS](https://graphblas.org/)-like API impleme | |
|
||
### Operations | ||
- **Matrix-Matrix** | ||
- [x] COO-COO element-wize | ||
- [x] CSR-CSR element-wize | ||
- [ ] CSR-CSR multiplication | ||
- [ ] COO transpose | ||
- [ ] CSR transpose | ||
- [x] COO-COO `map2` | ||
- [x] CSR-CSR `map2` | ||
- [x] CSR-CSR multiplication | ||
- **Vector-Matrix** | ||
- [x] Dense-CSR multiplication | ||
- [ ] COO-CSR multiplication | ||
- **Vector-Vector** | ||
- [x] Dense-Dense element-wise | ||
- [x] Sparse-Sparse element-wise | ||
- [ ] ... | ||
- **Matrix** | ||
- [ ] `map` | ||
- [x] `map` | ||
- [x] COO transpose | ||
- [x] CSR transpose | ||
- [ ] `iter` | ||
- [ ] ... | ||
- **Vector** | ||
- [ ] `map` | ||
- [x] `map` | ||
- [ ] `iter` | ||
- [ ] `filter` | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. What about |
||
- [ ] `contains` | ||
|
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
161 changes: 0 additions & 161 deletions
161
src/GraphBLAS-sharp.Backend/COOVector/Utilities/AssignSubVector/Filter.fs
This file was deleted.
Oops, something went wrong.
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.
What about masking?
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.
I don't quite understand, masking is expressed through
map2
. Should I explicitly state this?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.
Hmmm... I think, you are right. I guess, we should provide mapping between GraphBLAS# and GraphBLAS API.