summaryrefslogtreecommitdiff
path: root/test/correctness/routines/level2/xsymv.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/correctness/routines/level2/xsymv.cpp')
-rw-r--r--test/correctness/routines/level2/xsymv.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/correctness/routines/level2/xsymv.cpp b/test/correctness/routines/level2/xsymv.cpp
index 3f0a8f8b..41c6ce00 100644
--- a/test/correctness/routines/level2/xsymv.cpp
+++ b/test/correctness/routines/level2/xsymv.cpp
@@ -17,7 +17,7 @@ int main(int argc, char *argv[]) {
auto errors = size_t{0};
errors += clblast::RunTests<clblast::TestXsymv<float>, float, float>(argc, argv, false, "SSYMV");
errors += clblast::RunTests<clblast::TestXsymv<double>, double, double>(argc, argv, true, "DSYMV");
- errors += clblast::RunTests<clblast::TestXsymv<half>, half, half>(argc, argv, true, "HSYMV");
+ errors += clblast::RunTests<clblast::TestXsymv<clblast::half>, clblast::half, clblast::half>(argc, argv, true, "HSYMV");
if (errors > 0) { return 1; } else { return 0; }
}