From 77a622f2bb3356ee005a9413f6436373ec06efc2 Mon Sep 17 00:00:00 2001 From: Gael Guennebaud Date: Tue, 8 Jul 2008 17:20:17 +0000 Subject: add Cholesky and eigensolver benchmark --- bench/basicbenchmark.cpp | 14 +------------- 1 file changed, 1 insertion(+), 13 deletions(-) (limited to 'bench/basicbenchmark.cpp') diff --git a/bench/basicbenchmark.cpp b/bench/basicbenchmark.cpp index 25101270e..bd500c06a 100644 --- a/bench/basicbenchmark.cpp +++ b/bench/basicbenchmark.cpp @@ -4,19 +4,7 @@ int main(int argc, char *argv[]) { - // disable floating point exceptions - // this leads to more stable bench results - // (this is done by default by ICC) - #ifndef __INTEL_COMPILER - { - int aux; - asm( - "stmxcsr %[aux] \n\t" - "orl $32832, %[aux] \n\t" - "ldmxcsr %[aux] \n\t" - : : [aux] "m" (aux)); - } - #endif + DISABLE_SSE_EXCEPTIONS(); // this is the list of matrix type and size we want to bench: // ((suffix) (matrix size) (number of iterations)) -- cgit v1.2.3