| 169 | } |
| 170 | #if 0 |
| 171 | std::chrono::microseconds measure_time_omp(unsigned num_threads) { |
| 172 | auto beg = std::chrono::high_resolution_clock::now(); |
| 173 | matrix_multiplication_omp(num_threads); |
| 174 | auto end = std::chrono::high_resolution_clock::now(); |
| 175 | return std::chrono::duration_cast<std::chrono::microseconds>(end - beg); |
| 176 | } |
| 177 | #endif |
| 178 | std::chrono::microseconds measure_time_highs(unsigned num_threads) { |
| 179 | auto beg = std::chrono::high_resolution_clock::now(); |
no test coverage detected