| 32 | } |
| 33 | |
| 34 | static void RandomFloatArrayInit(float *dst, int count, float minimum, float maximum) { |
| 35 | for (int i = 0; i < count; i++) { |
| 36 | dst[i] = BE1::Math::Random(minimum, maximum); |
| 37 | } |
| 38 | } |
| 39 | |
| 40 | static void TestAdd() { |
| 41 | uint64_t bestClocksGeneric; |
no outgoing calls
no test coverage detected