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