MCPcopy Create free account
hub / github.com/ERGO-Code/HiGHS / measure_time_highs

Function measure_time_highs

check/TestHighsParallel.cpp:178–183  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

176}
177#endif
178std::chrono::microseconds measure_time_highs(unsigned num_threads) {
179 auto beg = std::chrono::high_resolution_clock::now();
180 matrix_multiplication_highs(num_threads);
181 auto end = std::chrono::high_resolution_clock::now();
182 return std::chrono::duration_cast<std::chrono::microseconds>(end - beg);
183}
184
185int N = 0;
186double **a = nullptr, **b = nullptr, **c = nullptr;

Callers 1

matrix_multiplicationFunction · 0.85

Calls 2

nowClass · 0.85

Tested by

no test coverage detected