-
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
Changes from 2 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -206,7 +206,7 @@ double dotProduct<double>(const int n, const double* x, const double* y) { | |
} | ||
#endif | ||
|
||
#if defined(PADDLE_USE_MKL) || defined(PADDLE_USE_MKLML) | ||
#if defined(PADDLE_USE_MKLML) | ||
|
||
template <> | ||
void vExp<float>(const int n, const float* a, float* r) { | ||
|
@@ -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 commentThe reason will be displayed to describe this comment to others. Learn more. 这里需要知情下,下面的这些函数,MKLML里面是没有提供的,但是MKL大包里面是提供的。在MKLML时,走的是else的那一路。 |
||
template <> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe 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 commentThe reason will be displayed to describe this comment to others. Learn more. 具体性能差异还没有测过,但已经发邮件希望MKLML在下一个版本发布时,加入对vInvSqrt/vLog1p/vTanh这三个函数的支持。 |
||
void vInvSqrt<float>(const int n, const float* a, float* r) { | ||
vsInvSqrt(n, a, r); | ||
} | ||
|
||
template <> | ||
void vInvSqrt<double>(const int n, const double* a, double* r) { | ||
vdInvSqrt(n, a, r); | ||
} | ||
|
||
template <> | ||
void vLog1p<float>(const int n, const float* a, float* r) { | ||
vsLog1p(n, a, r); | ||
} | ||
|
||
template <> | ||
void vLog1p<double>(const int n, const double* a, double* r) { | ||
vdLog1p(n, a, r); | ||
} | ||
|
||
template <> | ||
void vTanh<float>(const int n, const float* a, float* r) { | ||
vsTanh(n, a, r); | ||
} | ||
|
||
template <> | ||
void vTanh<double>(const int n, const double* a, double* r) { | ||
vdTanh(n, a, r); | ||
} | ||
#else | ||
|
||
DEFINE_MATRIX_BINARY_OP(vInvSqrt, b = 1.0f / std::sqrt(a)); | ||
template <class T> | ||
void vInvSqrt(const int n, const T* a, T* r) { | ||
|
@@ -357,6 +325,4 @@ template void vLog1p(const int n, const double* a, double* r); | |
template void vTanh(const int n, const float* a, float* r); | ||
template void vTanh(const int n, const double* a, double* r); | ||
|
||
#endif | ||
|
||
} // namespace paddle |
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