But they implement their own matrices and use the bindings for operations over them. Are there any implementations that use BLAS and LAPACK bindings for operations over matrices created using the math/matrix racket extension?
Jens Axel Søgaard
unread,
Mar 28, 2020, 9:02:07 AM3/28/20
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Pratyush Das, Racket Users
Not that I know of.
The way matrices are stored in `math/matrix` is not suitable for passing to BLAS directly. The library `math/matrix` uses functional arrays to store the elements. The library BLAS on the other hand expects piece of memory in which the elements are laid out in a particular way. So if you have a math/matrix matrix and want to use a BLAS operation, you will need write conversion functions.