summaryrefslogtreecommitdiff
path: root/test/correctness
diff options
context:
space:
mode:
authorCNugteren <web@cedricnugteren.nl>2015-06-11 07:37:52 +0200
committerCNugteren <web@cedricnugteren.nl>2015-06-11 07:37:52 +0200
commit5858193a50057b709a6444e6ff7c035190c245e7 (patch)
treed4d9f6cf59d9f12df1d21357f3ed9ba130ea7071 /test/correctness
parent85c1db93221bf9d71083c6725a33ccbcd1b61de4 (diff)
Removed obsolete testing structure for TestABC
Diffstat (limited to 'test/correctness')
-rw-r--r--test/correctness/testabc.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/test/correctness/testabc.h b/test/correctness/testabc.h
index bb06ea22..c80f8d58 100644
--- a/test/correctness/testabc.h
+++ b/test/correctness/testabc.h
@@ -23,17 +23,6 @@
namespace clblast {
// =================================================================================================
-// Defines the parameters that delineate individual test-cases
-struct Parameters {
- Layout layout;
- Transpose a_transpose;
- Transpose b_transpose;
- std::string GetString() const {
- return "Layout: "+ToString(layout)+", A: "+ToString(a_transpose)+
- ", B: "+ToString(b_transpose);
- }
-};
-
// See comment at top of file for a description of the class
template <typename T>
class TestABC: public Tester<T> {