Hi. As a result of a conversation with rtoy at #lisp, I've noticed
that lazy-loader.lisp is not loading libblas&c. when configure
=2D-with-atlas is used with sbcl. This quick hack of
load-blas-&-lapack-libraries works for me:
#+:sbcl
(defun load-blas-&-lapack-libraries ()
#+@ATLAS_P@ (sb-alien:load-shared-object "@ATLAS_DIR@/libblas.so")
#+@ATLAS_P@ (sb-alien:load-shared-object "@ATLAS_DIR@/liblapack.so")
#(not @ATLAS_P@) (sb-alien:load-shared-object "matlisp:lib;libmatlisp.so"=
))
HTH,
jao
=2D-=20
If people do not believe that mathematics is simple, it is only
because they do not realize how complicated life is.
=2D John von Neumann
|