summaryrefslogtreecommitdiff
path: root/test/correctness/routines/level3/xsymm.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/correctness/routines/level3/xsymm.cpp')
-rw-r--r--test/correctness/routines/level3/xsymm.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/correctness/routines/level3/xsymm.cpp b/test/correctness/routines/level3/xsymm.cpp
index 3e745d24..13d1b685 100644
--- a/test/correctness/routines/level3/xsymm.cpp
+++ b/test/correctness/routines/level3/xsymm.cpp
@@ -19,7 +19,7 @@ int main(int argc, char *argv[]) {
errors += clblast::RunTests<clblast::TestXsymm<double>, double, double>(argc, argv, true, "DSYMM");
errors += clblast::RunTests<clblast::TestXsymm<clblast::float2>, clblast::float2, clblast::float2>(argc, argv, true, "CSYMM");
errors += clblast::RunTests<clblast::TestXsymm<clblast::double2>, clblast::double2, clblast::double2>(argc, argv, true, "ZSYMM");
- errors += clblast::RunTests<clblast::TestXsymm<half>, half, half>(argc, argv, true, "HSYMM");
+ errors += clblast::RunTests<clblast::TestXsymm<clblast::half>, clblast::half, clblast::half>(argc, argv, true, "HSYMM");
if (errors > 0) { return 1; } else { return 0; }
}