对cblas_sgemm的未定义引用

undefined reference to cblas_sgemm

本文关键字:未定义 引用 sgemm cblas      更新时间:2023-10-16

我有以下制作文件

g++ -Wall -O3 -g -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=0 Matrix.cc -L /usr/lib64/libcblas.so.0 util.cc word_io.cc net_lbl_2reps_scalable.cc train_lbl_2r_ptb.cc -o train_lbl_2r_ptb

然而,我得到错误

/tmp/cc9NLGFL.o:在函数Matrix::scaleAddAB(Matrix const&, Matrix const&, float, float)': /home/ncelm/Matrix.cc:316: undefined reference to cblas_sgemm'中/tmp/cc9NLGFL.o:在函数Matrix::scaleAddAtransB(Matrix const&, Matrix const&, float, float)': /home/ncelm/Matrix.cc:330: undefined reference to cblas_sgemm'中/tmp/cc9NLGFL.o:在函数Matrix::scaleAddABtrans(Matrix const&, Matrix const&, float, float)': /home/ncelm/Matrix.cc:344: undefined reference to cblas_sgemm'中

发生错误的功能:

void Matrix::scaleAddABtrans(const Matrix &A, const Matrix &B, float targetScale, float prodScale)
  {
  assert(A.rows() == rows() && A.cols() == B.cols() && B.rows() == cols());
  ::cblas_sgemm(CblasColMajor, CblasNoTrans, CblasTrans,
                A.rows(), B.rows(), A.cols(),
                prodScale, // Scale the product by 1
                A.data(), A.rows(),
                B.data(), B.rows(),
                targetScale, // Scale the target by this before adding the product matrix
                data(), rows());
}

它可以链接文件,但找不到sgemm。无法理解为什么?

正如user6292850所指出的,-L选项采用目录名,而不是库名。要命名库,请使用-lcblas。在这种情况下,您可能不需要使用-L,因为/usr/lib64可能在默认搜索路径上。

还有一点建议:在命令行上,将链接器选项和库名称放在任何源和对象文件名之后。在make中,它通常看起来像这样:

$ c++ $(CXXFLAGS) -o train_lbl_2r_ptb $(SRC) $(LDFLAGS) -lcblas

这样做是因为链接器按照原来的方式解析名称。在您的示例中,如果util.cc使用cblas函数,则链接器可能找不到它,除非该库显示在命令行的右侧。