You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For the QMCPACK AFQMC Kokkos implementation, we will need support for operations on matrices of complex numbers.
Besides dense and sparse multiplies, we will need:
Matrix determinant, inversion and diagonalization.
We currently use:
LU factorization (zgetrf) and solve (zgetri / zgetrs)
LQ factorization
The text was updated successfully, but these errors were encountered:
Based on discussion we need sparse matrix / dense matrix multiply, where the dense matrix is actually just a multi vector (i.e. very skinny). Also the sparsity of the sparse matrix is not very high (0.1-0.5) and it seems like that matrix is also pretty skinny (15kx2k).
For the QMCPACK AFQMC Kokkos implementation, we will need support for operations on matrices of complex numbers.
Besides dense and sparse multiplies, we will need:
Matrix determinant, inversion and diagonalization.
We currently use:
LU factorization (zgetrf) and solve (zgetri / zgetrs)
LQ factorization
The text was updated successfully, but these errors were encountered: