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
Lapack++ seems to be missing the device implementations of posv. There is currently a cpu only implementation in lapack++ (see src/posv.cc). A device implementation of posv could be potentially be implemented with the already existing building blocks : lapack::potrf and lapack::trsm which both have both cpu and device implementations. We've taken this approach as a work around in our project for the time being.
The text was updated successfully, but these errors were encountered:
Sounds good. Our work is on prototyping randomized linear algebra algorithms with an eye toward use on the DOE's exascale systems, but it's not part of the ECP.
Lapack++ seems to be missing the device implementations of posv. There is currently a cpu only implementation in lapack++ (see src/posv.cc). A device implementation of
posv
could be potentially be implemented with the already existing building blocks :lapack::potrf
andlapack::trsm
which both have both cpu and device implementations. We've taken this approach as a work around in our project for the time being.The text was updated successfully, but these errors were encountered: