From 75ef78495c6c7d2b872a2e3ea4a60b3e58e4d796 Mon Sep 17 00:00:00 2001 From: Tom Deakin Date: Wed, 11 May 2016 11:53:51 +0100 Subject: [PATCH] Add print out of number of iterations --- main.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/main.cpp b/main.cpp index c31df9c..3a516de 100644 --- a/main.cpp +++ b/main.cpp @@ -72,6 +72,8 @@ int main(int argc, char *argv[]) template void run() { + std::cout << "Running kernels " << num_times << " times" << std::endl; + if (sizeof(T) == sizeof(float)) std::cout << "Precision: float" << std::endl; else