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
{{ message }}
This repository has been archived by the owner on Jan 26, 2023. It is now read-only.
I want to compare the performance for different version of matrix_multiply. It works well for "matrix.icc/matrix.gcc/matrix.clang/matrix.dpcpp". But when I run "matrix.mkl", I got an error below:
'''
===== Error: Change matrix kernel to 'multiply5' for compilation with MKL =====
'''
How to change matrix kernel? Thanks
The text was updated successfully, but these errors were encountered:
multiply.h file is defining a global micro MULTIPLY which is used in file thrmodel.cpp, in thrmodel.cpp function(kernel) call for mkl is there.
MULTIPLY micro is set to multiply1, and calling multiply1 function for all versions(gcc, icc, clang, mkl, mic) of executions, but the function(kernel) call for mkl should be multiply5
Update multiply.h:
remove the line “#define MULTIPLY multiply1”
add the following lines: #ifdef USE_MKL #define MULTIPLY multiply5 #else #define MULTIPLY multiply1 #endif
Now, you can run for all versions.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
I want to compare the performance for different version of matrix_multiply. It works well for "matrix.icc/matrix.gcc/matrix.clang/matrix.dpcpp". But when I run "matrix.mkl", I got an error below:
'''
===== Error: Change matrix kernel to 'multiply5' for compilation with MKL =====
'''
How to change matrix kernel? Thanks
The text was updated successfully, but these errors were encountered: