Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
因此,当不同的 BLAS/LAPACK 供应商发生时,我的代码希望包含不同的头文件。是否有任何预定义的宏或类似的东西让我检查它?
CMake 2.8+ 附带 FindBLAS.cmake FindLAPACK.cmake。您可能需要查看本地 cmake 安装文件中的注释:cmake-2.8.5/share/cmake/Modules/FindBLAS.cmake。该模块支持各种 BLAS 和 LAPACK 实现。例如:
set( ENV{BLA_VENDOR} "ATLAS" ) find_package( BLAS REQUIRED )
祝你好运。