提交 7782a4ab 编写于 作者: T tensor-tang

fix blas build issue

上级 17987eb3
......@@ -41,7 +41,11 @@ math_library(depthwise_conv)
math_library(gru_compute DEPS activation_functions math_function)
math_library(im2col)
math_library(lstm_compute DEPS activation_functions)
cc_library(blas SRCS blas.cc DEPS cblas libxsmm framework_proto device_context)
set(BLAS_DEPS cblas framework_proto device_context)
if (WITH_LIBXSMM)
list(APPEND BLAS_DEPS libxsmm)
endif()
cc_library(blas SRCS blas.cc DEPS ${BLAS_DEPS})
math_library(math_function DEPS blas)
math_library(maxouting)
math_library(pooling)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册