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