Is sparse BLAS not included in BLAS?
I have a working LAPACK implementation and that, as far as I read, contains BLAS. I want to use SPARSE BLAS and as far as I understand this website , SPARSE BLAS is part of BLAS. But when I tried to run the code below from the sparse blas manual using g++ -o sparse.x sparse_blas_example.c -L/usr/local/lib -lblas && ./sparse_ex.x the compiler (or linker?) asked for blas_sparse.h. When I put that file in the working directory I got: ludi@ludi-M17xR4:~/Desktop/tests$ g++ -o sparse.x sparse_blas_example.c -L/usr/local/lib -lblas && ./sparse_ex.x In file included from sparse_blas_example.c:3:0: