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
with the new intel compilers (icx, icpx) one runs into the following type of errors:
[ 141s] /home/abuild/rpmbuild/BUILD/complexespp-main/complexes++/src/mc/npt.cpp:164:13: error: explicit comparison with NaN in fast floating point mode [-Werror,-Wtautological-constant-compare]
[ 141s] if (std::isnan(enDelta) || std::isinf(enDelta)) {
One could change the fp-model or include some flags to make the compiler honor these checks even with the default 'fast' but I think this would require a new section in the CMakeLists.txt since the compiler id is now 'IntelLLVM' and the flags might be different from the classic compiler.
The text was updated successfully, but these errors were encountered:
with the new intel compilers (icx, icpx) one runs into the following type of errors:
One could change the fp-model or include some flags to make the compiler honor these checks even with the default 'fast' but I think this would require a new section in the CMakeLists.txt since the compiler id is now 'IntelLLVM' and the flags might be different from the classic compiler.
The text was updated successfully, but these errors were encountered: