Simple example for sparse matrix-vector multiplication? #191
Replies: 3 comments 1 reply
-
IV = ([1, 5], [1, -1])
II,VV = tuple_of_arrays(IV)
b = pvector(II,VV,row_partition) |> fetch This works only if you are partitioning b into 2 parts. This is how you would implement the SpMV: muladd!(b,A,x) = mul!(b,A,x,1,1)
function myspmv!(b,A,x)
t = PA.consistent!(x)
map(mul!,PA.own_values(b),PA.own_own_values(A),PA.own_values(x))
wait(t)
map(muladd!,PA.own_values(b),PA.own_ghost_values(A),PA.ghost_values(x))
b
end In recent versions, this is allocation free. To convert a sequential sparse matrix into a PSparseMatrix you would need a graph partitioner (e.g., metis). I agree that it would be a good idea to have an example on how to do this. Feel free to propose one! If you want you learn more about the library, I am giving this seminar soon: |
Beta Was this translation helpful? Give feedback.
-
b is dense. We work with dense vectors and sparse matrices. It is possible to work with sparse vectors, but this is not implemented. Indeed, mul! is implemented like myspmv! For the moment only MPI for parallel computing. MPI is widely supported in supercomputers. |
Beta Was this translation helpful? Give feedback.
-
The IterativeSolvers code works, but if I try doing simply x = similar(b,axes(A,2))
mul!(x, A, b) I get the error ERROR: AssertionError: matching_ghost_indices(axes(a, 2), axes(b, 1))
Stacktrace:
[1] mul!(c::PVector{…}, a::PSparseMatrix{…}, b::PVector{…})
@ PartitionedArrays ~/.julia/packages/PartitionedArrays/Tq4ld/src/p_sparse_matrix.jl:2093
[2] top-level scope
@ ~/GitHub/Research/Undef/PartitionedArrays Benchmark/partitionedarrays.jl:71
Some type information was truncated. Use `show(err)` to see complete types. I'm wondering how the iterative solver can work without a working implementation of |
Beta Was this translation helpful? Give feedback.
-
Hello,
is it possible to have a very minimal working example of a matrix-vector multiplication? I know there is the example on the documentation here, but I was wondering if that example could be simplified.
For example, the initialization of the vector
is performed with
But can this be simplified with the following code?
Same for the matrix initialization.
Moreover, does the application of the
mul!
operation allocate memory? In principle, if the vector is dense, there should not be any allocations, but I don't know in this case. Can the vector be considered dense if I initialize also the zero entries?Finally, it would be great to have a tutorial on how to promote a
SparseMatrixCSC
into aPSparseMatrix
Beta Was this translation helpful? Give feedback.
All reactions