You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
During compilation I noticed that the mkl_vsl.h package been missed. I found the package and set its path in the Makefile.config.
Now I'm getting the following error:
src/caffe/util/math_functions.cpp:125:41: error: ‘cblas_saxpby’ was not declared in this scope
cblas_saxpby(N, alpha, X, 1, beta, Y, 1);
^
src/caffe/util/math_functions.cpp: In function ‘void caffe::caffe_axpby(int, Dtype, const Dtype*, Dtype, Dtype*) [with Dtype = double]’:
src/caffe/util/math_functions.cpp:131:41: error: ‘cblas_daxpby’ was not declared in this scope
cblas_daxpby(N, alpha, X, 1, beta, Y, 1);
^
In file included from ./include/caffe/common.hpp:12:0,
from src/caffe/util/math_functions.cpp:5:
src/caffe/util/math_functions.cpp: In function ‘void caffe::caffe_vRngUniform(int, Dtype*, Dtype, Dtype) [with Dtype = float]’:
src/caffe/util/math_functions.cpp:257:17: error: ‘VSL_RNG_METHOD_UNIFORM_STD’ was not declared in this scope
vsRngUniform(VSL_RNG_METHOD_UNIFORM_STD, Caffe::vsl_stream(), n, r, a, b));
^
....
^
src/caffe/util/math_functions.cpp:277:2: note: in expansion of macro ‘VSL_CHECK’
VSL_CHECK(
Does anybody have any idea?
The text was updated successfully, but these errors were encountered:
During compilation I noticed that the
mkl_vsl.h
package been missed. I found the package and set its path in theMakefile.config
.Now I'm getting the following error:
Does anybody have any idea?
The text was updated successfully, but these errors were encountered: