time counting

include

auto start = std::chrono::high_resolution_clock::now();
end = std::chrono::high_resolution_clock::now();
timing = std::chrono::duration(end - start);
std::cout << timing.count() << " ms " << std::endl;

你可能感兴趣的:(time counting)