glm/test/perf/perf_matrix_div.cpp

154 lines
4.4 KiB
C++
Raw Normal View History

2018-08-18 14:12:26 +00:00
#define GLM_FORCE_INLINE
#include <glm/ext/matrix_float4x4.hpp>
2018-08-19 10:13:55 +00:00
#include <glm/ext/matrix_double4x4.hpp>
2018-08-18 14:12:26 +00:00
#include <glm/ext/matrix_transform.hpp>
2018-08-19 10:13:55 +00:00
#include <glm/ext/matrix_relational.hpp>
2018-08-18 14:12:26 +00:00
#include <glm/ext/vector_float4.hpp>
#if GLM_CONFIG_SIMD == GLM_ENABLE
#include <glm/gtc/type_aligned.hpp>
#include <vector>
#include <chrono>
#include <cstdio>
2018-08-19 10:13:55 +00:00
template <typename matType>
static void test_mat_div_mat(matType const& M, std::vector<matType> const& I, std::vector<matType>& O)
2018-08-18 14:12:26 +00:00
{
for (std::size_t i = 0, n = I.size(); i < n; ++i)
2018-08-19 10:13:55 +00:00
O[i] = M / I[i];
2018-08-18 14:12:26 +00:00
}
2018-08-19 10:13:55 +00:00
template <typename matType>
static int launch_mat_div_mat(std::vector<matType>& O, matType const& Transform, matType const& Scale, std::size_t Samples)
2018-08-18 14:12:26 +00:00
{
2018-08-19 10:13:55 +00:00
typedef typename matType::value_type T;
2018-08-18 14:12:26 +00:00
2018-08-19 10:13:55 +00:00
std::vector<matType> I(Samples);
O.resize(Samples);
2018-08-18 14:12:26 +00:00
2018-08-19 10:13:55 +00:00
for(std::size_t i = 0; i < Samples; ++i)
2018-08-19 11:36:31 +00:00
I[i] = Scale * static_cast<T>(i) + Scale;
2018-08-18 14:12:26 +00:00
2018-08-19 10:13:55 +00:00
std::chrono::high_resolution_clock::time_point t1 = std::chrono::high_resolution_clock::now();
test_mat_div_mat<matType>(Transform, I, O);
std::chrono::high_resolution_clock::time_point t2 = std::chrono::high_resolution_clock::now();
2018-08-18 14:12:26 +00:00
2018-08-19 10:13:55 +00:00
return static_cast<int>(std::chrono::duration_cast<std::chrono::microseconds>(t2 - t1).count());
2018-08-18 14:12:26 +00:00
}
2018-08-19 10:13:55 +00:00
template <typename packedMatType, typename alignedMatType>
static int comp_mat2_div_mat2(std::size_t Samples)
2018-08-18 14:12:26 +00:00
{
2018-08-19 10:13:55 +00:00
typedef typename packedMatType::value_type T;
int Error = 0;
2018-08-18 14:12:26 +00:00
2018-08-19 10:13:55 +00:00
packedMatType const Transform(1, 2, 3, 4);
packedMatType const Scale(0.01, 0.02, 0.03, 0.05);
2018-08-18 14:12:26 +00:00
2018-08-19 10:13:55 +00:00
std::vector<packedMatType> SISD;
2019-09-07 11:41:08 +00:00
std::printf("- SISD: %d us\n", launch_mat_div_mat<packedMatType>(SISD, Transform, Scale, Samples));
2018-08-18 14:12:26 +00:00
2018-08-19 10:13:55 +00:00
std::vector<alignedMatType> SIMD;
2019-09-07 11:41:08 +00:00
std::printf("- SIMD: %d us\n", launch_mat_div_mat<alignedMatType>(SIMD, Transform, Scale, Samples));
2018-08-18 14:12:26 +00:00
for(std::size_t i = 0; i < Samples; ++i)
2018-08-19 10:13:55 +00:00
{
packedMatType const A = SISD[i];
packedMatType const B = SIMD[i];
Error += glm::all(glm::equal(A, B, static_cast<T>(0.001))) ? 0 : 1;
2018-08-19 11:36:31 +00:00
assert(!Error);
2018-08-19 10:13:55 +00:00
}
return Error;
2018-08-18 14:12:26 +00:00
}
2018-08-19 10:13:55 +00:00
template <typename packedMatType, typename alignedMatType>
static int comp_mat3_div_mat3(std::size_t Samples)
2018-08-18 14:12:26 +00:00
{
2018-08-19 10:13:55 +00:00
typedef typename packedMatType::value_type T;
int Error = 0;
2018-08-18 14:12:26 +00:00
2018-08-19 10:13:55 +00:00
packedMatType const Transform(1, 2, 3, 4, 5, 6, 7, 8, 9);
packedMatType const Scale(0.01, 0.02, 0.03, 0.05, 0.01, 0.02, 0.03, 0.05, 0.01);
2018-08-18 14:12:26 +00:00
2018-08-19 10:13:55 +00:00
std::vector<packedMatType> SISD;
2019-09-07 11:41:08 +00:00
std::printf("- SISD: %d us\n", launch_mat_div_mat<packedMatType>(SISD, Transform, Scale, Samples));
2018-08-18 14:12:26 +00:00
2018-08-19 10:13:55 +00:00
std::vector<alignedMatType> SIMD;
2019-09-07 11:41:08 +00:00
std::printf("- SIMD: %d us\n", launch_mat_div_mat<alignedMatType>(SIMD, Transform, Scale, Samples));
2018-08-18 14:12:26 +00:00
2018-08-18 15:15:27 +00:00
for(std::size_t i = 0; i < Samples; ++i)
2018-08-19 10:13:55 +00:00
{
packedMatType const A = SISD[i];
packedMatType const B = SIMD[i];
Error += glm::all(glm::equal(A, B, static_cast<T>(0.001))) ? 0 : 1;
2018-08-19 11:36:31 +00:00
assert(!Error);
2018-08-19 10:13:55 +00:00
}
return Error;
2018-08-18 14:12:26 +00:00
}
2018-08-19 10:13:55 +00:00
template <typename packedMatType, typename alignedMatType>
static int comp_mat4_div_mat4(std::size_t Samples)
2018-08-18 14:12:26 +00:00
{
2018-08-19 10:13:55 +00:00
typedef typename packedMatType::value_type T;
2018-08-18 15:15:27 +00:00
2018-08-19 10:13:55 +00:00
int Error = 0;
2018-08-18 14:12:26 +00:00
2018-08-19 10:13:55 +00:00
packedMatType const Transform(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16);
2018-08-19 11:36:31 +00:00
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);
2018-08-18 14:12:26 +00:00
2018-08-19 10:13:55 +00:00
std::vector<packedMatType> SISD;
2019-09-07 11:41:08 +00:00
std::printf("- SISD: %d us\n", launch_mat_div_mat<packedMatType>(SISD, Transform, Scale, Samples));
2018-08-18 14:12:26 +00:00
2018-08-19 10:13:55 +00:00
std::vector<alignedMatType> SIMD;
2019-09-07 11:41:08 +00:00
std::printf("- SIMD: %d us\n", launch_mat_div_mat<alignedMatType>(SIMD, Transform, Scale, Samples));
2018-08-18 14:12:26 +00:00
2018-08-19 10:13:55 +00:00
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<T>(0.001))) ? 0 : 1;
2018-08-19 11:36:31 +00:00
assert(!Error);
2018-08-19 10:13:55 +00:00
}
return Error;
2018-08-18 14:12:26 +00:00
}
int main()
{
2023-12-20 22:02:34 +00:00
std::size_t const Samples = 1000;
2018-08-18 14:12:26 +00:00
2018-08-19 10:13:55 +00:00
int Error = 0;
2019-09-07 11:41:08 +00:00
std::printf("mat2 / mat2:\n");
2018-08-19 10:13:55 +00:00
Error += comp_mat2_div_mat2<glm::mat2, glm::aligned_mat2>(Samples);
2019-09-07 11:41:08 +00:00
std::printf("dmat2 / dmat2:\n");
2018-08-19 10:13:55 +00:00
Error += comp_mat2_div_mat2<glm::dmat2, glm::aligned_dmat2>(Samples);
2019-09-07 11:41:08 +00:00
std::printf("mat3 / mat3:\n");
2018-08-19 10:13:55 +00:00
Error += comp_mat3_div_mat3<glm::mat3, glm::aligned_mat3>(Samples);
2019-09-07 11:41:08 +00:00
std::printf("dmat3 / dmat3:\n");
2018-08-19 10:13:55 +00:00
Error += comp_mat3_div_mat3<glm::dmat3, glm::aligned_dmat3>(Samples);
2019-09-07 11:41:08 +00:00
std::printf("mat4 / mat4:\n");
2018-08-19 10:13:55 +00:00
Error += comp_mat4_div_mat4<glm::mat4, glm::aligned_mat4>(Samples);
2019-09-07 11:41:08 +00:00
std::printf("dmat4 / dmat4:\n");
2018-08-19 10:13:55 +00:00
Error += comp_mat4_div_mat4<glm::dmat4, glm::aligned_dmat4>(Samples);
return Error;
2018-08-18 14:12:26 +00:00
}
#else
int main()
{
return 0;
}
#endif