From 0cd746fa81585de7d4bdf7789d50e17b86ee147c Mon Sep 17 00:00:00 2001 From: Philippe Tillet Date: Fri, 30 Sep 2016 02:34:25 -0400 Subject: [PATCH] Tests: disabled double precision --- tests/common/api.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/common/api.hpp b/tests/common/api.hpp index 061c2b15a..2452a7532 100644 --- a/tests/common/api.hpp +++ b/tests/common/api.hpp @@ -261,7 +261,7 @@ bool diff(isaac::array const & x, VecType const & y, typename VecType::value_typ {START1, START1 + STRIDE1*SUBM, STRIDE1}));\ template -int run_test(test_fun_t const & testf, test_fun_t const & testd) +int run_test(test_fun_t const & testf, test_fun_t const & /*testd*/) { int nfail = 0; int npass = 0; @@ -275,8 +275,8 @@ int run_test(test_fun_t const & testf, test_fun_t const & testd) std::cout << "Device: " << device.name() << " on " << device.platform().name() << " " << device.platform().version() << std::endl; std::cout << "---" << std::endl; testf(*context, nfail, npass); - if(device.fp64_support()) - testd(*context, nfail, npass); +// if(device.fp64_support()) +// testd(*context, nfail, npass); std::cout << "---" << std::endl; } if(nfail>0)