summaryrefslogtreecommitdiff
path: root/test/correctness/routines/level1/xscal.cc
diff options
context:
space:
mode:
authorCedric Nugteren <web@cedricnugteren.nl>2016-05-26 13:15:27 +0200
committerCedric Nugteren <web@cedricnugteren.nl>2016-05-26 13:15:27 +0200
commitb487d4dd44179293c9e08ddf2ce3ed902fa749c8 (patch)
treeec2f08e2e80e1d74294fd4222b939089e524ab2f /test/correctness/routines/level1/xscal.cc
parent4612ff3552d94ab8827888c3de2fcac76190a686 (diff)
Added half-precision tests for the CBLAS reference through conversion to single-precison
Diffstat (limited to 'test/correctness/routines/level1/xscal.cc')
-rw-r--r--test/correctness/routines/level1/xscal.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/correctness/routines/level1/xscal.cc b/test/correctness/routines/level1/xscal.cc
index 4d138fad..9146e5ce 100644
--- a/test/correctness/routines/level1/xscal.cc
+++ b/test/correctness/routines/level1/xscal.cc
@@ -22,6 +22,7 @@ int main(int argc, char *argv[]) {
clblast::RunTests<clblast::TestXscal<double>, double, double>(argc, argv, true, "DSCAL");
clblast::RunTests<clblast::TestXscal<float2>, float2, float2>(argc, argv, true, "CSCAL");
clblast::RunTests<clblast::TestXscal<double2>, double2, double2>(argc, argv, true, "ZSCAL");
+ clblast::RunTests<clblast::TestXscal<half>, half, half>(argc, argv, true, "HSCAL");
return 0;
}