-
To recreate (using Python 3.12 on Windows):
```shell
$ py -3.12 -m venv env
$ source env/Scripts/activate
$ python -m pip install -U pip
$ pip install suitesparse-graphblas
$ python -c "import s…
-
Let's use this to track discussion and implementation of the GraphBLAS 9 JIT.
My opinion:
The JIT needs to be configured with a compiler, which is done at GraphBLAS build time by [GraphBLAS_JIT_…
-
**Current status**
The my_demo example once it gets compiled it runs for a small hard-coded matrix. For being compiled it requires that all algorithms in SuiteSparse have been built. GraphBlas howeve…
-
```
negative_a = irb.arith.mulf(a, c_negative_1_f64)
factor = irb.graphblas.apply(eye, "second", right=negative_a)
irb.graphblas.update(L, factor, "plus")
two_over_…
-
Now that we have a logo for `python-graphblas` (https://github.com/python-graphblas/python-graphblas/pull/506), I suppose the logical next step is to make a logo for `graphblas-algorithms`. It would p…
-
Hi all! Still getting used to the graphblas bindings and writing efficient enough algorithms to contribute effectively, but I thought I'd put a placeholder issue up in case someone else already has pr…
-
Just wonder if you can kindly bump the underlying SuiteSparse:GraphBlas to v9? Thanks!
-
Hi,
Thanks for the authors' contributions to GraphBLAS.
I am a beginner of GraphBLAS. I try to compile the GraphBLAS on a server with Ubuntu 20.04 and NVIDIA RTX 3080Ti GPU with CUDA Version=11.5.…
-
# Recent radical innovation
There has been some radical innovation in graph processing the last few years
GraphBLAS efficiently represents and operates on graphs as sparse matrices. It provides …
-
Hi,
In the specification API Document (The GraphBLAS C API Specification Version 2.1), section 3.2 (Line 720) the type for the indices is defined:
```c
typedef uint64_t GrB_Index;
```
I was…