| 75 | runbench(name, instance); \ |
| 76 | } |
| 77 | void Check(bool Result, const char * Lib, std::string& String) |
| 78 | { |
| 79 | if (!IPP_AVAILABLE) |
| 80 | { |
| 81 | String = "No IPP - can't compare"; |
| 82 | return; |
| 83 | } |
| 84 | |
| 85 | if (Result) |
| 86 | return; |
| 87 | |
| 88 | if (String == "Success") |
| 89 | String = "Fail "; |
| 90 | else |
| 91 | String += "&"; |
| 92 | |
| 93 | String += Lib; |
| 94 | } |
| 95 | |
| 96 | struct Libraries |
| 97 | { |