summaryrefslogtreecommitdiff
path: root/test/correctness/routines/level2/xspr2.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/correctness/routines/level2/xspr2.cpp')
-rw-r--r--test/correctness/routines/level2/xspr2.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/correctness/routines/level2/xspr2.cpp b/test/correctness/routines/level2/xspr2.cpp
index 2650bd03..8310f5d1 100644
--- a/test/correctness/routines/level2/xspr2.cpp
+++ b/test/correctness/routines/level2/xspr2.cpp
@@ -17,7 +17,7 @@ int main(int argc, char *argv[]) {
auto errors = size_t{0};
errors += clblast::RunTests<clblast::TestXspr2<float>, float, float>(argc, argv, false, "SSPR2");
errors += clblast::RunTests<clblast::TestXspr2<double>, double, double>(argc, argv, true, "DSPR2");
- errors += clblast::RunTests<clblast::TestXspr2<half>, half, half>(argc, argv, true, "HSPR2");
+ errors += clblast::RunTests<clblast::TestXspr2<clblast::half>, clblast::half, clblast::half>(argc, argv, true, "HSPR2");
if (errors > 0) { return 1; } else { return 0; }
}