-
Hi Jan and Claudio,
Hope you are both well! I have been following your work closely and am curious to know if tensor plans to support, or is willing to accept PRs for sparse (e.g. CSR/CSC) matrix …
-
Best just to show. It's possible I'm not doing things quite right:
```C
int main (void)
{
GrB_Vector w, u ;
GrB_Info info ;
OK (GrB_init (GrB_NONBLOCKING)) ;
OK (GrB_Vector_new…
-
What are the time complexities of GrB_vxm and GrB_Matrix_extract?
When conducting a BFS, I'm curious if it's faster to extract a submatrix and then LOR across the rows, than it is to multiply.
-
After the GraphBLAS API call of 2 October we have new more explicit C++ naming standards:
The namespace: GraphBLAS API operations: will be 'camelCase' except for matrix multiplies as follows: buildMat…
-
So, this has me stumped. I think I should try to reproduce this in C and see if it's fixed on master of SS:GraphBLAS.
```python
A = Matrix.from_values([0], [0], [1])
B = A.dup(dtype=float)…
-
**Describe the bug**
Make is not doing the proper thing according to the library build instructions on the github readme.
**To Reproduce**
1. Download the latest SuiteSparse-5.7.2.zip.
2. Open u…
-
This is more of an idea/suggestion than a feature request. What do you think of adding `LXNOR` binary operator and monoid as a `GxB`?
Here's a use case: triangle count given the incidence matrix `…
-
I added test for `LAGraph_Vector_to_dense` in #91.
The function produces incorrect result if it is built with SuiteSparse v3.3.0draft5. Some non-zero values are missing. ([test code](https://github…
-
Hello! Thanks a lot for pygraphblas, it makes life easier)
But for some reason docker doesn't suit me and I need to install pygraphblas directly. I tried to run the install-ubuntu.sh, but got the err…
-
### Unexpected behavior
When GrB_vxm is called with empty w, u, A, and non-empty mask, GrB_vxm never returns.
### Example code
``` c
#include "GraphBLAS.h"
int main(int argc, char *argv[]) …