SuiteSparseGraphBLAS.jl icon indicating copy to clipboard operation
SuiteSparseGraphBLAS.jl copied to clipboard

Sparse, General Linear Algebra for Graphs!

Results 50 SuiteSparseGraphBLAS.jl issues
Sort by recently updated
recently updated
newest added

``` julia> B = GBVector([3, 4, 5, 6, 7], [3, 4, 5, 6, 7]) 7x1 GraphBLAS int64_t matrix, bitmap by col 5 entries, memory: 272 bytes (3,1) 3 (4,1) 4...

This is a franken-PR that should combine several different **_untested_** local branches over the next few days.

Is there any convenient accessor through Julia to iterate over the nonzero elements of a `GBMatrix`, with the full triplet information `(i,j,v)` instead of `v` alone? Similar to the [`SparseArrays`package](https://docs.julialang.org/en/v1/stdlib/SparseArrays/#SparseArrays.nzrange),...

This pull request sets the compat entry for the `KLU` package to `0.3`. This keeps the compat entries for earlier versions. Note: I have not tested your package with this...

Since `Transpose{T, SparseMatrixCSC{T}}` and `Adjoint{T, SparseMatrixCSC{T}}` are used as place-ins for CSR matrices, it may be a good idea to add `GBMatrix` constructors for these types, which would directly construct...

enhancement
Don't Forget to Don't Forget me
v1.0

Todo list of ChainRules: - [x] to_vec and rand_tangent from ChainRulesTestUtils/FiniteDifferences - [x] mul - [x] emul - [x] eadd - [x] getindex - [x] map - [x] select -...

Project
v1.0

I can get decent parallel speed-up for sparse matmul and sparse matvec, but the dot product between two vectors seems very slow: ```julia using SuiteSparseGraphBLAS using BenchmarkTools gbset(:nthreads, 16) b...

The [benchmark section](https://github.com/JuliaSparse/SuiteSparseGraphBLAS.jl#benchmarks) shows faster execution with more threads. However, I cannot reproduce such parallel scaling. The benchmark script: ```julia using Random: seed! using SparseArrays using SuiteSparseGraphBLAS using BenchmarkTools @show...

Many examples should go in a future GraphBLAS.jl, but I'll add some here anyway. - [x] Triangle Counting - [ ] Centrality - [x] PageRank - [ ] Something Boolean?...

Project
v1.0

new examples added, new files could still contain some print statements used to test the algorithms