Added perf tests
This commit is contained in:
@@ -1,5 +1,10 @@
|
||||
#define GLM_FORCE_INLINE
|
||||
#include <glm/ext/matrix_float2x2.hpp>
|
||||
#include <glm/ext/matrix_double2x2.hpp>
|
||||
#include <glm/ext/matrix_float3x3.hpp>
|
||||
#include <glm/ext/matrix_double3x3.hpp>
|
||||
#include <glm/ext/matrix_float4x4.hpp>
|
||||
#include <glm/ext/matrix_double4x4.hpp>
|
||||
#include <glm/ext/matrix_transform.hpp>
|
||||
#include <glm/ext/matrix_relational.hpp>
|
||||
#include <glm/ext/vector_float4.hpp>
|
||||
@@ -34,22 +39,81 @@ static int launch_mat_mul_mat(std::vector<matType>& O, matType const& Transform,
|
||||
return static_cast<int>(std::chrono::duration_cast<std::chrono::microseconds>(t2 - t1).count());
|
||||
}
|
||||
|
||||
static int comp_mat_mul_mat(std::size_t Samples)
|
||||
template <typename packedMatType, typename alignedMatType>
|
||||
static int comp_mat2_mul_mat2(std::size_t Samples)
|
||||
{
|
||||
typedef typename packedMatType::value_type T;
|
||||
|
||||
int Error = 0;
|
||||
|
||||
glm::mat4 const Transform(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16);
|
||||
glm::mat4 const Scale(0.01, 0.02, 0.03, 0.05, 0.01, 0.02, 0.03, 0.05, 0.01, 0.02, 0.03, 0.05, 0.01, 0.02, 0.03, 0.05);
|
||||
packedMatType const Transform(1, 2, 3, 4);
|
||||
packedMatType const Scale(0.01, 0.02, 0.03, 0.05);
|
||||
|
||||
std::vector<glm::mat4> Mat4SISD;
|
||||
printf("mat4 * mat4 (SISD) duration %d us\n", launch_mat_mul_mat<glm::mat4>(Mat4SISD, Transform, Scale, Samples));
|
||||
std::vector<packedMatType> SISD;
|
||||
printf("- SISD: %d us\n", launch_mat_mul_mat<packedMatType>(SISD, Transform, Scale, Samples));
|
||||
|
||||
std::vector<glm::aligned_mat4> Mat4SIMD;
|
||||
printf("mat4 * mat4 (SIMD) duration %d us\n", launch_mat_mul_mat<glm::aligned_mat4>(Mat4SIMD, Transform, Scale, Samples));
|
||||
std::vector<alignedMatType> SIMD;
|
||||
printf("- SIMD: %d us\n", launch_mat_mul_mat<alignedMatType>(SIMD, Transform, Scale, Samples));
|
||||
|
||||
for(std::size_t i = 0; i < Samples; ++i)
|
||||
Error += glm::all(glm::equal(Mat4SISD[i], Mat4SIMD[i], 0.001)) ? 0 : 1;
|
||||
{
|
||||
packedMatType const A = SISD[i];
|
||||
packedMatType const B = SIMD[i];
|
||||
Error += glm::all(glm::equal(A, B, static_cast<T>(0.001))) ? 0 : 1;
|
||||
}
|
||||
|
||||
return Error;
|
||||
}
|
||||
|
||||
template <typename packedMatType, typename alignedMatType>
|
||||
static int comp_mat3_mul_mat3(std::size_t Samples)
|
||||
{
|
||||
typedef typename packedMatType::value_type T;
|
||||
|
||||
int Error = 0;
|
||||
|
||||
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);
|
||||
|
||||
std::vector<packedMatType> SISD;
|
||||
printf("- SISD: %d us\n", launch_mat_mul_mat<packedMatType>(SISD, Transform, Scale, Samples));
|
||||
|
||||
std::vector<alignedMatType> SIMD;
|
||||
printf("- SIMD: %d us\n", launch_mat_mul_mat<alignedMatType>(SIMD, Transform, 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<T>(0.001))) ? 0 : 1;
|
||||
}
|
||||
|
||||
return Error;
|
||||
}
|
||||
|
||||
template <typename packedMatType, typename alignedMatType>
|
||||
static int comp_mat4_mul_mat4(std::size_t Samples)
|
||||
{
|
||||
typedef typename packedMatType::value_type T;
|
||||
|
||||
int Error = 0;
|
||||
|
||||
packedMatType const Transform(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16);
|
||||
packedMatType const Scale(0.01, 0.02, 0.03, 0.05, 0.01, 0.02, 0.03, 0.05, 0.01, 0.02, 0.03, 0.05, 0.01, 0.02, 0.03, 0.05);
|
||||
|
||||
std::vector<packedMatType> SISD;
|
||||
printf("- SISD: %d us\n", launch_mat_mul_mat<packedMatType>(SISD, Transform, Scale, Samples));
|
||||
|
||||
std::vector<alignedMatType> SIMD;
|
||||
printf("- SIMD: %d us\n", launch_mat_mul_mat<alignedMatType>(SIMD, Transform, 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<T>(0.001))) ? 0 : 1;
|
||||
}
|
||||
|
||||
return Error;
|
||||
}
|
||||
|
||||
@@ -58,7 +122,24 @@ int main()
|
||||
std::size_t const Samples = 100000;
|
||||
|
||||
int Error = 0;
|
||||
Error += comp_mat_mul_mat(Samples);
|
||||
|
||||
printf("mat2 * mat2:\n");
|
||||
Error += comp_mat2_mul_mat2<glm::mat2, glm::aligned_mat2>(Samples);
|
||||
|
||||
printf("dmat2 * dmat2:\n");
|
||||
Error += comp_mat2_mul_mat2<glm::dmat2, glm::aligned_dmat2>(Samples);
|
||||
|
||||
printf("mat3 * mat3:\n");
|
||||
Error += comp_mat3_mul_mat3<glm::mat3, glm::aligned_mat3>(Samples);
|
||||
|
||||
printf("dmat3 * dmat3:\n");
|
||||
Error += comp_mat3_mul_mat3<glm::dmat3, glm::aligned_dmat3>(Samples);
|
||||
|
||||
printf("mat4 * mat4:\n");
|
||||
Error += comp_mat4_mul_mat4<glm::mat4, glm::aligned_mat4>(Samples);
|
||||
|
||||
printf("dmat4 * dmat4:\n");
|
||||
Error += comp_mat4_mul_mat4<glm::dmat4, glm::aligned_dmat4>(Samples);
|
||||
|
||||
return Error;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user