-
Notifications
You must be signed in to change notification settings - Fork 5.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
remove unused INTEL_MKL_ROOT etc. #5512
Conversation
cmake/external/openblas.cmake
Outdated
ELSE() | ||
ADD_LIBRARY(cblas STATIC ${dummyfile}) | ||
ENDIF() | ||
ADD_LIBRARY(cblas STATIC ${dummyfile}) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
这里应该不能直接这样改,原来用的match,所以把MKL换成MKLML就好,用equal就行。或者直接就可以不需要改这里。
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
DONE
@@ -295,38 +295,6 @@ template void vAdd(const int n, const double* a, const double* b, double* r); | |||
|
|||
#endif | |||
|
|||
#ifdef PADDLE_USE_MKL |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
这里需要知情下,下面的这些函数,MKLML里面是没有提供的,但是MKL大包里面是提供的。在MKLML时,走的是else的那一路。
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
@@ -295,38 +295,6 @@ template void vAdd(const int n, const double* a, const double* b, double* r); | |||
|
|||
#endif | |||
|
|||
#ifdef PADDLE_USE_MKL | |||
template <> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
这些函数不用MKL对性能的影响是什么?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
具体性能差异还没有测过,但已经发邮件希望MKLML在下一个版本发布时,加入对vInvSqrt/vLog1p/vTanh这三个函数的支持。
fix #4085
As Paddle support MKLML & MKLDNN currently, we could use MKLML to instead INTEL_MKL_ROOT. Setting WITH_MKLML=ON and WITH_MKLDNN=ON, all the MKL related libraries will be auto-downloaded, compiled and installed.