Mercurial > vec
comparison test/test.c @ 18:cf04071d2148
impl: initial NEON support; test: verify bit shifting functions
| author | Paper <paper@tflc.us> |
|---|---|
| date | Wed, 20 Nov 2024 14:33:19 -0500 |
| parents | 41dd962abdd1 |
| children | e59c91d050c0 |
comparison
equal
deleted
inserted
replaced
| 17:41dd962abdd1 | 18:cf04071d2148 |
|---|---|
| 110 // ------------------------------------------------------------ | 110 // ------------------------------------------------------------ |
| 111 | 111 |
| 112 #include "test_align.h" | 112 #include "test_align.h" |
| 113 #include "test_arith.h" | 113 #include "test_arith.h" |
| 114 #include "test_compare.h" | 114 #include "test_compare.h" |
| 115 #include "test_shift.h" | |
| 115 | 116 |
| 116 // ------------------------------------------------------------ | 117 // ------------------------------------------------------------ |
| 117 | 118 |
| 118 int main(void) | 119 int main(void) |
| 119 { | 120 { |
| 122 vec_init(); | 123 vec_init(); |
| 123 | 124 |
| 124 ret |= test_align(); | 125 ret |= test_align(); |
| 125 ret |= test_arith(); | 126 ret |= test_arith(); |
| 126 ret |= test_compare(); | 127 ret |= test_compare(); |
| 128 ret |= test_shift(); | |
| 127 | 129 |
| 128 return ret; | 130 return ret; |
| 129 } | 131 } |
