forked from python-graphblas/python-graphblas
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
WIP: add Vector inner and outer products.
I think these methods are worth adding to the main API. The way in which we do this is SuiteSparse-specific, and we can add recipes for other implementations if/when that time comes. Note that `semiring(w @ v)` is sugar for `w.inner(v)`. TODO: - [ ] document - [ ] test - [ ] allow `v.outer` to accept a `BinaryOp`, `Monoid`, or `Semiring` xref: DrTimothyAldenDavis/GraphBLAS#57
- Loading branch information
Showing
3 changed files
with
76 additions
and
3 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
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