From e576d12d66401f0bbfd8620bbee0406b6be72e9c Mon Sep 17 00:00:00 2001 From: Philippe Tillet Date: Thu, 30 Oct 2014 14:20:14 -0400 Subject: [PATCH] Added ViennaCL time --- bench/blas.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bench/blas.cpp b/bench/blas.cpp index b8bfb9f92..5e380c579 100644 --- a/bench/blas.cpp +++ b/bench/blas.cpp @@ -48,11 +48,12 @@ void bench(std::vector BLAS1_N, std::mapexecute(statement), time_model);\ BENCHMARK(models[key]->execute(statement, true), time_unique_kernel);\ models[key]->tune(statement);\ BENCHMARK(models[key]->execute(statement), time_opt);\ - std::cout << *it << " " << measure(N,time_unique_kernel) << " " << measure(N,time_model) << " " << measure(N,time_opt) << std::endl;\ + std::cout << *it << " " << measure(N, time_viennacl) << " " << measure(N,time_unique_kernel) << " " << measure(N,time_model) << " " << measure(N,time_opt) << std::endl;\ }\ #define DECLARE(type, ...) type __VA_ARGS__