Comments on: Getting started with ATLAS, BLAS and LAPACK http://www.lindonslog.com/programming/atlas-blas-lapack-linear-algebra-libraries/ Sun, 27 Nov 2016 15:23:00 +0000 hourly 1 https://wordpress.org/?v=4.6.1 By: FoadSF http://www.lindonslog.com/programming/atlas-blas-lapack-linear-algebra-libraries/#comment-1289 Sun, 27 Nov 2016 15:23:00 +0000 http://www.lindonslog.com/?p=539#comment-1289 I used you example here and also collected dozens of other examples in this repository: :
https://github.com/Foadsf/Cmathtuts
with complete instructions for compiling and using BLAS, CBLAS, LAPACK, LAPACKE, CLAPACK…
hope it will be usefull

]]>
By: daemondave http://www.lindonslog.com/programming/atlas-blas-lapack-linear-algebra-libraries/#comment-1236 Thu, 03 Dec 2015 19:56:20 +0000 http://www.lindonslog.com/?p=539#comment-1236 Only on Ubuntu, on Fedora
-lsatlas

Best to use pkg-config to find options:

ATLAS_CFLAGS=$(pkg-config –cflags atlas)
ATLAS_CFLAGS+=$(pkg-config –cflags blas-atlas)
ATLAS_CFLAGS+=$(pkg-config –cflags lapack-atlas)
ATLAS_LDFLAGS=$(pkg-config –libs atlas)
ATLAS_LDFLAGS+=$(pkg-config –libs blas-atlas)
ATLAS_LDFLAGS+=$(pkg-config –libs lapack-atlas)

that gets them on Debian and Redhat distro variants.

]]>
By: admin http://www.lindonslog.com/programming/atlas-blas-lapack-linear-algebra-libraries/#comment-58 Wed, 28 Aug 2013 14:04:59 +0000 http://www.lindonslog.com/?p=539#comment-58 Thanks 🙂

]]>
By: mano http://www.lindonslog.com/programming/atlas-blas-lapack-linear-algebra-libraries/#comment-56 Tue, 27 Aug 2013 17:58:52 +0000 http://www.lindonslog.com/?p=539#comment-56 $ gcc testblasc.c -o testblas -L /usr/lib64/atlas -lcblas
should read
$ gcc testblasc.c -o testblas -L /usr/lib64/atlas -lcblas -latlas
or
$ gcc testblasc.c -o testblas -L /usr/lib64/atlas -lblas

]]>