Browse Source

Remove exception resetting.

tags/v1.1.4
Andrew Belt 5 years ago
parent
commit
352b882579
2 changed files with 2 additions and 2 deletions
  1. +2
    -0
      include/dsp/approx.hpp
  2. +0
    -2
      src/engine/Engine.cpp

+ 2
- 0
include/dsp/approx.hpp View File

@@ -12,9 +12,11 @@ The functionality is the first part, and the approximation methods are the follo


Glossary: Glossary:
https://en.wikipedia.org/wiki/Taylor_series https://en.wikipedia.org/wiki/Taylor_series
https://en.wikipedia.org/wiki/Chebyshev_polynomials
https://en.wikipedia.org/wiki/Pad%C3%A9_approximant https://en.wikipedia.org/wiki/Pad%C3%A9_approximant
https://en.wikipedia.org/wiki/Horner%27s_method https://en.wikipedia.org/wiki/Horner%27s_method
https://en.wikipedia.org/wiki/Estrin%27s_scheme https://en.wikipedia.org/wiki/Estrin%27s_scheme
https://en.wikipedia.org/wiki/CORDIC
*/ */






+ 0
- 2
src/engine/Engine.cpp View File

@@ -24,8 +24,6 @@ static void initMXCSR() {
_MM_SET_DENORMALS_ZERO_MODE(_MM_DENORMALS_ZERO_ON); _MM_SET_DENORMALS_ZERO_MODE(_MM_DENORMALS_ZERO_ON);
// Reset other flags // Reset other flags
_MM_SET_ROUNDING_MODE(_MM_ROUND_NEAREST); _MM_SET_ROUNDING_MODE(_MM_ROUND_NEAREST);
_MM_SET_EXCEPTION_MASK(0);
_MM_SET_EXCEPTION_STATE(0);
} }






Loading…
Cancel
Save