-
Notifications
You must be signed in to change notification settings - Fork 13
Can SpMP be used by someone with a standard CSR matrix? #2
Comments
Hi Ricarrdo, yes in fact CSR is the default (and actually the only matrix format) currently implemented in SpMP. I have SELLPACK implementation in my private repository that has better performance in Xeon Phi but haven't had time to merge it to the main branch. |
Hi Jongsoo, however taking a first peek at your example i think that i expressed badly my question. i also saw that you have a .mm reader. i will try out how is speedup over serial on a typical case and report my findings |
Hi Riccardo, it's my bad to misunderstand your question.
Then, you can pass this CSR instance to SpMP routines. Hope this helps. Your feedback on speedup over serial will be very useful for me. |
Hello,
my FEM code has a completely standard implementation of a CSR matrix.
let's say that i have the 3 csr arrays:
values, cols, rows
i would like to do something like
solve( values, cols, indices , x, b)
or eventually
ilu0 myILU0object(values, cols, rows )
myILU0object.solve(x,b) //x = ILU^-1*b, that is applying the preconditioner
any example of this?
The text was updated successfully, but these errors were encountered: