| 156 | } |
| 157 | |
| 158 | bool AreAllClose(const float* sseResult, const float reference, const unsigned ulp_tolerance) |
| 159 | { |
| 160 | for (unsigned i = 0; i < 4; ++i) |
| 161 | { |
| 162 | if (GetULPDifference(sseResult[i], reference) > ulp_tolerance) |
| 163 | { |
| 164 | return false; |
| 165 | } |
| 166 | } |
| 167 | return true; |
| 168 | } |
| 169 | |
| 170 | std::string GetOperation(const char* fct, const float arg1) |
| 171 | { |
no test coverage detected