From 1f25000a3014f39f56f6969b21c3de3e0286c61e Mon Sep 17 00:00:00 2001 From: Christophe Date: Mon, 26 Feb 2024 23:55:50 +0100 Subject: [PATCH] Quicker unit tests --- glm/detail/setup.hpp | 4 ++-- test/ext/ext_scalar_integer.cpp | 4 ++-- test/gtc/gtc_bitfield.cpp | 10 ++++++---- test/gtc/gtc_round.cpp | 2 +- 4 files changed, 11 insertions(+), 9 deletions(-) diff --git a/glm/detail/setup.hpp b/glm/detail/setup.hpp index 1664c897..315eb346 100644 --- a/glm/detail/setup.hpp +++ b/glm/detail/setup.hpp @@ -5,10 +5,10 @@ #define GLM_VERSION_MAJOR 1 #define GLM_VERSION_MINOR 0 -#define GLM_VERSION_PATCH 0 +#define GLM_VERSION_PATCH 1 #define GLM_VERSION_REVISION 0 // Deprecated #define GLM_VERSION 1000 // Deprecated -#define GLM_VERSION_MESSAGE "GLM: version 1.0.0" +#define GLM_VERSION_MESSAGE "GLM: version 1.0.1" #define GLM_MAKE_API_VERSION(variant, major, minor, patch) \ ((((uint32_t)(variant)) << 29U) | (((uint32_t)(major)) << 22U) | (((uint32_t)(minor)) << 12U) | ((uint32_t)(patch))) diff --git a/test/ext/ext_scalar_integer.cpp b/test/ext/ext_scalar_integer.cpp index 054133fe..1a16b56b 100644 --- a/test/ext/ext_scalar_integer.cpp +++ b/test/ext/ext_scalar_integer.cpp @@ -222,7 +222,7 @@ namespace nextPowerOfTwo_advanced int Error(0); std::vector v; - v.resize(100000000); + v.resize(10000); std::clock_t Timestramp0 = std::clock(); @@ -586,7 +586,7 @@ namespace nextMultiple { int Error = 0; - glm::uint const Samples = 10000; + glm::uint const Samples = 100; for(int i = 0; i < 4; ++i) { diff --git a/test/gtc/gtc_bitfield.cpp b/test/gtc/gtc_bitfield.cpp index ea16e729..09cc5ed9 100644 --- a/test/gtc/gtc_bitfield.cpp +++ b/test/gtc/gtc_bitfield.cpp @@ -62,7 +62,7 @@ namespace mask static int perf() { - int const Count = 100000000; + int const Count = 10000; std::clock_t Timestamp1 = std::clock(); @@ -123,7 +123,7 @@ namespace mask std::printf("mask[zero]: %d\n", static_cast(TimeZero)); std::printf("mask[half]: %d\n", static_cast(TimeHalf)); - return TimeDefault < TimeLoop ? 0 : 1; + return TimeDefault <= TimeLoop ? 0 : 1; } #if GLM_COMPILER & GLM_COMPILER_CLANG @@ -559,8 +559,8 @@ namespace bitfieldInterleave static int perf() { - glm::uint32 x_max = 1 << 11; - glm::uint32 y_max = 1 << 10; + glm::uint32 x_max = 1 << 7; + glm::uint32 y_max = 1 << 6; // ALU std::vector Data(x_max * y_max); @@ -647,6 +647,7 @@ namespace bitfieldInterleave std::printf("glm::detail::bitfieldInterleave Time %d clocks\n", static_cast(Time)); } +# if((GLM_PLATFORM & GLM_PLATFORM_WINDOWS) || (GLM_PLATFORM & GLM_PLATFORM_LINUX)) # if(GLM_ARCH & GLM_ARCH_SSE2_BIT && !(GLM_COMPILER & GLM_COMPILER_GCC)) { // SIMD @@ -667,6 +668,7 @@ namespace bitfieldInterleave std::printf("_mm_bit_interleave_si128 Time %d clocks\n", static_cast(Time)); } # endif//GLM_ARCH & GLM_ARCH_SSE2_BIT +# endif//GLM_PLATFORM GLM_PLATFORM_APPLE return 0; } diff --git a/test/gtc/gtc_round.cpp b/test/gtc/gtc_round.cpp index 6bf25aac..2500749b 100644 --- a/test/gtc/gtc_round.cpp +++ b/test/gtc/gtc_round.cpp @@ -244,7 +244,7 @@ namespace ceilPowerOfTwo_advanced int Error(0); std::vector v; - v.resize(100000000); + v.resize(10000); std::clock_t Timestramp0 = std::clock();