/* * Author: Harry van Haaren 2013 * harryhaaren@gmail.com * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ #ifndef LUPPP_DENORMALS_H #define LUPPP_DENORMALS_H #include #include "debug.hxx" #ifdef __SSE__ /* On Intel set FZ (Flush to Zero) and DAZ (Denormals Are Zero) flags to avoid costly denormals */ #ifdef __SSE3__ #include inline void AVOIDDENORMALS() { //std::cout << "Denormals: FZ DAZ using SSE3" << std::endl; _MM_SET_FLUSH_ZERO_MODE(_MM_FLUSH_ZERO_ON); _MM_SET_DENORMALS_ZERO_MODE(_MM_DENORMALS_ZERO_ON); } #else #include inline void AVOIDDENORMALS() { //std::cout << "Denormals: FZ" << std::endl; _MM_SET_FLUSH_ZERO_MODE(_MM_FLUSH_ZERO_ON); } #endif //__SSE3__ #else inline void AVOIDDENORMALS() { LUPPP_NOTE( "Denormals: Warning! No protection" ); } #endif //__SSE__ #endif // LUPPP_DENORMALS_H