Paddle/paddle/fluid/operators/math/blas_impl.h
Lines 22 to 30 in 8133736
| | template |
| | structCBlas; |
| | |
| | #ifdef PADDLE_WITH_MKLML |
| | template<> |
| | structCBlas { |
| | template<typename... ARGS> |
| | staticvoidGEMM(ARGS... args) { |
| | platform::dynload::cblas_sgemm(args...); |
It seems that
CBlas
is declared here, but not defined --CBlas;
instead ofCBlas {};
.- There is no use of CBlas throughout Fluid codebase.
Should we remove it?
1条答案
按热度按时间iugsix8n1#
We noticed this issue when we were working on https://github.com/wangkuiyi/fluid/pull/49.