-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #17 from SLM-Audio/syl/cherry-pick-no-fast-math
Update marvin to remove fastmath
- Loading branch information
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule marvin
updated
17 files
+82 −75 | CMakeLists.txt | |
+31 −29 | include/CMakeLists.txt | |
+12 −0 | include/marvin/dsp/marvin_DelayLine.h | |
+7 −0 | include/marvin/library/marvin_Concepts.h | |
+80 −0 | include/marvin/math/marvin_Conversions.h | |
+35 −27 | include/marvin/math/marvin_Math.h | |
+103 −0 | include/marvin/math/marvin_Reciprocal.h | |
+41 −4 | include/marvin/math/marvin_Windows.h | |
+15 −4 | include/marvin/utils/marvin_Random.h | |
+41 −0 | include/marvin/utils/marvin_Range.h | |
+14 −13 | source/CMakeLists.txt | |
+11 −0 | source/dsp/marvin_DelayLine.cpp | |
+29 −0 | source/math/marvin_Reciprocal.cpp | |
+9 −1 | source/utils/marvin_Random.cpp | |
+27 −26 | tests/CMakeLists.txt | |
+1 −0 | tests/dsp/filters/biquad/marvin_BiquadTests.cpp | |
+69 −0 | tests/math/marvin_ConversionTests.cpp |