summaryrefslogtreecommitdiff
path: root/test/correctness/routines
diff options
context:
space:
mode:
authorCNugteren <web@cedricnugteren.nl>2015-06-15 08:40:41 +0200
committerCNugteren <web@cedricnugteren.nl>2015-06-15 08:40:41 +0200
commite63d20e0b66b3b6e11f34663b743cb1814149c4f (patch)
tree2508c1f4eb2446800173468fdf3af4279ee6008b /test/correctness/routines
parent01726197ab112e280e2c31936255834c51e362d1 (diff)
Enable tests of DGEMV/CGEMV/ZGEMV
Diffstat (limited to 'test/correctness/routines')
-rw-r--r--test/correctness/routines/xgemv.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/correctness/routines/xgemv.cc b/test/correctness/routines/xgemv.cc
index 94ae147f..5a8c6b27 100644
--- a/test/correctness/routines/xgemv.cc
+++ b/test/correctness/routines/xgemv.cc
@@ -85,9 +85,9 @@ void XgemvTest(int argc, char *argv[], const bool silent, const std::string &nam
// Main function (not within the clblast namespace)
int main(int argc, char *argv[]) {
clblast::XgemvTest<float>(argc, argv, false, "SGEMV");
- //clblast::XgemvTest<double>(argc, argv, true, "DGEMV");
- //clblast::XgemvTest<clblast::float2>(argc, argv, true, "CGEMV");
- //clblast::XgemvTest<clblast::double2>(argc, argv, true, "ZGEMV");
+ clblast::XgemvTest<double>(argc, argv, true, "DGEMV");
+ clblast::XgemvTest<clblast::float2>(argc, argv, true, "CGEMV");
+ clblast::XgemvTest<clblast::double2>(argc, argv, true, "ZGEMV");
return 0;
}