| 75 | } |
| 76 | |
| 77 | void CheckSSE(const std::string & operation, |
| 78 | float expected, |
| 79 | float sseResult[4], |
| 80 | unsigned precision) |
| 81 | { |
| 82 | CheckFloat(operation, expected, sseResult[0], precision); |
| 83 | CheckFloat(operation, expected, sseResult[1], precision); |
| 84 | CheckFloat(operation, expected, sseResult[2], precision); |
| 85 | CheckFloat(operation, expected, sseResult[3], precision); |
| 86 | } |
| 87 | |
| 88 | void CheckPower(const float base, const float exponent) |
| 89 | { |
no test coverage detected