| 623 | } |
| 624 | |
| 625 | inline bool test_mul_f32_4() { |
| 626 | float a[4] = {2.0f, 3.0f, 4.0f, 5.0f}; |
| 627 | float b[4] = {3.0f, 4.0f, 5.0f, 6.0f}; |
| 628 | float expected[4] = {6.0f, 12.0f, 20.0f, 30.0f}; |
| 629 | float output[4] = {0.0f}; |
| 630 | store_f32_4(output, mul_f32_4(load_f32_4(a), load_f32_4(b))); |
| 631 | return compare_f32(expected, output, 4); |
| 632 | } |
| 633 | |
| 634 | inline bool test_mul_f32_4_negative() { |
| 635 | float a[4] = {-2.0f, 3.0f, -4.0f, 0.0f}; |
nothing calls this directly
no test coverage detected