summaryrefslogtreecommitdiff
path: root/test/correctness/routines/level1/xcopy.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/correctness/routines/level1/xcopy.cpp')
-rw-r--r--test/correctness/routines/level1/xcopy.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/correctness/routines/level1/xcopy.cpp b/test/correctness/routines/level1/xcopy.cpp
index e6e94d34..af750fdc 100644
--- a/test/correctness/routines/level1/xcopy.cpp
+++ b/test/correctness/routines/level1/xcopy.cpp
@@ -19,7 +19,7 @@ int main(int argc, char *argv[]) {
errors += clblast::RunTests<clblast::TestXcopy<double>, double, double>(argc, argv, true, "DCOPY");
errors += clblast::RunTests<clblast::TestXcopy<clblast::float2>, clblast::float2, clblast::float2>(argc, argv, true, "CCOPY");
errors += clblast::RunTests<clblast::TestXcopy<clblast::double2>, clblast::double2, clblast::double2>(argc, argv, true, "ZCOPY");
- errors += clblast::RunTests<clblast::TestXcopy<half>, half, half>(argc, argv, true, "HCOPY");
+ errors += clblast::RunTests<clblast::TestXcopy<clblast::half>, clblast::half, clblast::half>(argc, argv, true, "HCOPY");
if (errors > 0) { return 1; } else { return 0; }
}