caffe的blas库使用的是MKL,自己写的PCA也使用了MKL,在编译的时候始终通不过。报的错是cblas中的CblasNoTrans被重定义。
于是查看caffe源代码include/caffe/util/mkl_alternate.hpp中发现
#ifdef USE_MKL
#include <mkl.h>
#else // If use MKL, simply include the MKL header
extern "C" {
#include <cblas.h>
}
#include <math.h>
猜测可能是因为没有声明使用USE_MKL,于是头文件将cblas.h包含了进来,但是自己的PCA代码中include了mkl.h, 然后CblasNoTrans、CblasROwMajor等常量
被包含2次所以就报了错。
解决方法:在inlcude caffe.hpp 的前面声明使用MKL
#ifndef USE_MKL
#define USE_MKL
#endif
编译之后,便可以直接通过了