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