Is sparse BLAS not included in BLAS?

前端 未结 2 1550
我在风中等你
我在风中等你 2021-01-14 14:06

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

2条回答
  •  执笔经年
    2021-01-14 14:48

    It seems that g++ does not find the required header files. So you need to add

    -I path_to_header_files/ 
    

    to the command line arguments. I.e, the directory where you copied blas_sparse.h to your working directory.

提交回复
热议问题