Mercurial > vec
diff test/test.c @ 41:c6e0df09b86f default tip
*: performance improvements with old GCC, reimplement altivec
author | Paper <paper@tflc.us> |
---|---|
date | Mon, 28 Apr 2025 16:31:59 -0400 |
parents | f9ca85d2f14c |
children |
line wrap: on
line diff
--- a/test/test.c Sun Apr 27 02:49:53 2025 -0400 +++ b/test/test.c Mon Apr 28 16:31:59 2025 -0400 @@ -111,10 +111,12 @@ // ------------------------------------------------------------ +#if 0 #include "test_align.h" #include "test_arith.h" #include "test_compare.h" #include "test_shift.h" +#endif #include "test_benchmark.h" // ------------------------------------------------------------ @@ -125,10 +127,12 @@ srand(time(NULL)); +#if 0 ret |= test_align(); ret |= test_arith(); ret |= test_compare(); ret |= test_shift(); +#endif test_benchmark();