-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updating altmath library: SIMD for altmath is now optional
- Loading branch information
1 parent
f38bfa1
commit ad650ff
Showing
12 changed files
with
17 additions
and
45 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule altmath
updated
30 files
+25 −7 | CMakeLists.txt | |
+21 −8 | README.md | |
+0 −14,075 | catch2/catch.hpp | |
+197 −0 | doctest/ThreadLocal.h | |
+5,271 −0 | doctest/doctest.h | |
+166 −0 | src/mat2.h | |
+281 −5 | src/mat4.h | |
+11 −18 | src/math_utils.h | |
+155 −0 | src/simd/mat2f.h | |
+34 −3 | src/simd/mat4d.h | |
+104 −4 | src/simd/mat4f.h | |
+3 −0 | src/simd/quatf.h | |
+29 −0 | src/simd/simd.h | |
+4 −4 | src/simd/vec2d.h | |
+3 −0 | src/simd/vec2dx4.h | |
+4 −0 | src/simd/vec3dx4.h | |
+4 −5 | src/simd/vec4d.h | |
+10 −5 | src/simd/vec4f.h | |
+3 −0 | src/simd/vec4i.h | |
+44 −0 | src/simd/vec_utils.h | |
+18 −0 | src/splines.h | |
+4 −0 | src/vec2.h | |
+1 −1 | src/vec3.h | |
+6 −1 | src/vec4.h | |
+26 −44 | src/vec_utils.h | |
+53 −27 | tests/mat_test.cpp | |
+14 −10 | tests/quat_test.cpp | |
+2 −11 | tests/test_main.cpp | |
+160 −0 | tests/vec_simd_test.cpp | |
+131 −286 | tests/vec_test.cpp |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters