| 149 | |
| 150 | |
| 151 | int main() { |
| 152 | |
| 153 | initQuESTEnv(); |
| 154 | QuESTEnv env = getQuESTEnv(); |
| 155 | |
| 156 | demo_serial(); |
| 157 | |
| 158 | if (env.isMultithreaded) |
| 159 | demo_multithreaded(); |
| 160 | |
| 161 | if (env.isGpuAccelerated) |
| 162 | demo_gpuAccelerated(); |
| 163 | |
| 164 | if (env.isDistributed) |
| 165 | demo_distributed(); |
| 166 | |
| 167 | demo_auto(); |
| 168 | demo_all(); // may throw |
| 169 | |
| 170 | finalizeQuESTEnv(); |
| 171 | return 0; |
| 172 | } |
nothing calls this directly
no test coverage detected