summaryrefslogtreecommitdiff
path: root/test/correctness/routines/level3/xsymm.cpp
diff options
context:
space:
mode:
authorCedric Nugteren <web@cedricnugteren.nl>2017-04-17 16:44:00 +0200
committerCedric Nugteren <web@cedricnugteren.nl>2017-04-17 16:47:15 +0200
commit409a5a2ad09a5904a083059f9b1e00e53e1019d9 (patch)
tree5db2ee93fd9c828b89bdbbc9dab58fa9fe49f179 /test/correctness/routines/level3/xsymm.cpp
parent3e2faa5db8eabd6f5a5c6c835fda84f9b79b8b3b (diff)
Fixed a namespace clash with CUDA FP16 for the half-datatype
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; }
}