You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+70Lines changed: 70 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,6 +14,76 @@ GraphBLAS# is a GPGPU-based [GraphBLAS](https://graphblas.org/) implementation i
14
14
So, type of matrix-matrix elementwise oertion is ```Matrix<Option<'t1>> -> Matrix<Option<'t2>> -> (AtLeastOne<'t1,'t2> -> Option<'t3>) -> Matrix<Option<'t3>>```.
15
15
- No semirings. Just functions. Ofcourse one can implement semirings on the top of provided API.
16
16
17
+
### Operations
18
+
#### Matrix-Matrix
19
+
-[x] COO-COO element-wize
20
+
-[x] CSR-CSR element-wize
21
+
-[ ] CSR-CSR multiplication
22
+
-[ ] COO transpose
23
+
-[ ] CSR transpose
24
+
#### Vector-Matrix
25
+
-[x] Dense-CSR multiplication
26
+
-[ ] COO-CSR multiplication
27
+
#### Vector-Vector
28
+
-[x] Dense-Dense element-wise
29
+
-[ ] ...
30
+
31
+
### Evaluation
32
+
Matrices from [SuiteSparse matrix collection]() which we choose for evaluation.
0 commit comments