From 6a45579dbbf991c0e12ce59958e3b533d19fc9d4 Mon Sep 17 00:00:00 2001 From: jjesswan Date: Tue, 7 May 2024 06:02:29 -0400 Subject: rotating skyboxgit add -A --- glm-master/test/perf/perf_matrix_transpose.cpp | 150 +++++++++++++++++++++++++ 1 file changed, 150 insertions(+) create mode 100644 glm-master/test/perf/perf_matrix_transpose.cpp (limited to 'glm-master/test/perf/perf_matrix_transpose.cpp') diff --git a/glm-master/test/perf/perf_matrix_transpose.cpp b/glm-master/test/perf/perf_matrix_transpose.cpp new file mode 100644 index 0000000..2fdc782 --- /dev/null +++ b/glm-master/test/perf/perf_matrix_transpose.cpp @@ -0,0 +1,150 @@ +#define GLM_FORCE_INLINE +#include +#include +#include +#include +#include +#if GLM_CONFIG_SIMD == GLM_ENABLE +#include +#include +#include +#include + +template +static void test_mat_transpose(std::vector const& I, std::vector& O) +{ + for (std::size_t i = 0, n = I.size(); i < n; ++i) + O[i] = glm::transpose(I[i]); +} + +template +static int launch_mat_transpose(std::vector& O, matType const& Scale, std::size_t Samples) +{ + typedef typename matType::value_type T; + + std::vector I(Samples); + O.resize(Samples); + + for(std::size_t i = 0; i < Samples; ++i) + I[i] = Scale * static_cast(i) + Scale; + + std::chrono::high_resolution_clock::time_point t1 = std::chrono::high_resolution_clock::now(); + test_mat_transpose(I, O); + std::chrono::high_resolution_clock::time_point t2 = std::chrono::high_resolution_clock::now(); + + return static_cast(std::chrono::duration_cast(t2 - t1).count()); +} + +template +static int comp_mat2_transpose(std::size_t Samples) +{ + typedef typename packedMatType::value_type T; + + int Error = 0; + + packedMatType const Scale(0.01, 0.02, 0.03, 0.05); + + std::vector SISD; + std::printf("- SISD: %d us\n", launch_mat_transpose(SISD, Scale, Samples)); + + std::vector SIMD; + std::printf("- SIMD: %d us\n", launch_mat_transpose(SIMD, Scale, Samples)); + + for(std::size_t i = 0; i < Samples; ++i) + { + packedMatType const A = SISD[i]; + packedMatType const B = SIMD[i]; + Error += glm::all(glm::equal(A, B, static_cast(0.001))) ? 0 : 1; + assert(!Error); + } + + return Error; +} + +template +static int comp_mat3_transpose(std::size_t Samples) +{ + typedef typename packedMatType::value_type T; + + int Error = 0; + + packedMatType const Scale(0.01, 0.02, 0.03, 0.05, 0.01, 0.02, 0.03, 0.05, 0.01); + + std::vector SISD; + std::printf("- SISD: %d us\n", launch_mat_transpose(SISD, Scale, Samples)); + + std::vector SIMD; + std::printf("- SIMD: %d us\n", launch_mat_transpose(SIMD, Scale, Samples)); + + for(std::size_t i = 0; i < Samples; ++i) + { + packedMatType const A = SISD[i]; + packedMatType const B = SIMD[i]; + Error += glm::all(glm::equal(A, B, static_cast(0.001))) ? 0 : 1; + assert(!Error); + } + + return Error; +} + +template +static int comp_mat4_transpose(std::size_t Samples) +{ + typedef typename packedMatType::value_type T; + + int Error = 0; + + packedMatType const Scale(0.01, 0.02, 0.05, 0.04, 0.02, 0.08, 0.05, 0.01, 0.08, 0.03, 0.05, 0.06, 0.02, 0.03, 0.07, 0.05); + + std::vector SISD; + std::printf("- SISD: %d us\n", launch_mat_transpose(SISD, Scale, Samples)); + + std::vector SIMD; + std::printf("- SIMD: %d us\n", launch_mat_transpose(SIMD, Scale, Samples)); + + for(std::size_t i = 0; i < Samples; ++i) + { + packedMatType const A = SISD[i]; + packedMatType const B = SIMD[i]; + Error += glm::all(glm::equal(A, B, static_cast(0.001))) ? 0 : 1; + assert(!Error); + } + + return Error; +} + +int main() +{ + std::size_t const Samples = 100000; + + int Error = 0; + + std::printf("glm::transpose(mat2):\n"); + Error += comp_mat2_transpose(Samples); + + std::printf("glm::transpose(dmat2):\n"); + Error += comp_mat2_transpose(Samples); + + std::printf("glm::transpose(mat3):\n"); + Error += comp_mat3_transpose(Samples); + + std::printf("glm::transpose(dmat3):\n"); + Error += comp_mat3_transpose(Samples); + + std::printf("glm::transpose(mat4):\n"); + Error += comp_mat4_transpose(Samples); + + std::printf("glm::transpose(dmat4):\n"); + Error += comp_mat4_transpose(Samples); + + return Error; +} + +#else + +int main() +{ + return 0; +} + +#endif -- cgit v1.2.3-70-g09d2