summaryrefslogtreecommitdiff
path: root/test/correctness
diff options
context:
space:
mode:
authorCedric Nugteren <web@cedricnugteren.nl>2017-02-26 12:56:21 +0100
committerCedric Nugteren <web@cedricnugteren.nl>2017-02-26 12:56:21 +0100
commitb7310036eda482e8871d6a9d1e1660f93be1fd49 (patch)
tree989233807563dfe96a3d241697770fe7d978ade0 /test/correctness
parent70d8c4bad7911b3688ac4514fedc44e5e0f1f2d8 (diff)
Removed half-precision support from the TRSM routine; too unstable
Diffstat (limited to 'test/correctness')
-rw-r--r--test/correctness/routines/level3/xtrsm.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/test/correctness/routines/level3/xtrsm.cpp b/test/correctness/routines/level3/xtrsm.cpp
index 6119bd17..bc45a8bf 100644
--- a/test/correctness/routines/level3/xtrsm.cpp
+++ b/test/correctness/routines/level3/xtrsm.cpp
@@ -23,7 +23,6 @@ int main(int argc, char *argv[]) {
errors += clblast::RunTests<clblast::TestXtrsm<double>, double, double>(argc, argv, true, "DTRSM");
errors += clblast::RunTests<clblast::TestXtrsm<float2>, float2, float2>(argc, argv, true, "CTRSM");
errors += clblast::RunTests<clblast::TestXtrsm<double2>, double2, double2>(argc, argv, true, "ZTRSM");
- errors += clblast::RunTests<clblast::TestXtrsm<half>, half, half>(argc, argv, true, "HTRSM");
if (errors > 0) { return 1; } else { return 0; }
}