-
Notifications
You must be signed in to change notification settings - Fork 134
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
Fix: oneAPI runtime error when build with libtorch #4613
Conversation
By using the modified CMakelist.txt, I rerun the daily test (intel-elpa), and 000_I3Pb1C1N2H5 can run successfully and the results are correct, but other cases are still failed. |
This modification also breaks GNU toolchain building. @pxlxingliang I'm running out of ideas. Would you find someone else to help? |
Intel MKL and
libtorch_cpu.so
both brings their own FFT implementation, which causes conflict.By switching linking order, this PR let the former takes precedence.
The modification is tested on my instance.
#4603