summaryrefslogtreecommitdiff
path: root/test/performance/routines/xsymm.cc
diff options
context:
space:
mode:
authorCNugteren <web@cedricnugteren.nl>2015-06-26 08:10:23 +0200
committerCNugteren <web@cedricnugteren.nl>2015-06-26 08:10:23 +0200
commit75f263ce3aa35f57115670af18719137b3020e79 (patch)
tree1d584c03bc3514018ec6da8619d9770cf98126f8 /test/performance/routines/xsymm.cc
parentff9f9fac57b550d4a8834a5e5b344c2eefa9099f (diff)
Added symmetric matrix support for the ABC performance tester
Diffstat (limited to 'test/performance/routines/xsymm.cc')
-rw-r--r--test/performance/routines/xsymm.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/performance/routines/xsymm.cc b/test/performance/routines/xsymm.cc
index 0b1d75a5..d78d4eb8 100644
--- a/test/performance/routines/xsymm.cc
+++ b/test/performance/routines/xsymm.cc
@@ -96,10 +96,10 @@ void ClientXsymm(int argc, char *argv[]) {
kArgAlpha, kArgBeta};
switch(GetPrecision(argc, argv)) {
case Precision::kHalf: throw std::runtime_error("Unsupported precision mode");
- case Precision::kSingle: ClientABC<float>(argc, argv, PerformanceXsymm<float>, o); break;
- case Precision::kDouble: ClientABC<double>(argc, argv, PerformanceXsymm<double>, o); break;
- case Precision::kComplexSingle: ClientABC<float2>(argc, argv, PerformanceXsymm<float2>, o); break;
- case Precision::kComplexDouble: ClientABC<double2>(argc, argv, PerformanceXsymm<double2>, o); break;
+ case Precision::kSingle: ClientABC<float>(argc, argv, PerformanceXsymm<float>, o, false); break;
+ case Precision::kDouble: ClientABC<double>(argc, argv, PerformanceXsymm<double>, o, false); break;
+ case Precision::kComplexSingle: ClientABC<float2>(argc, argv, PerformanceXsymm<float2>, o, false); break;
+ case Precision::kComplexDouble: ClientABC<double2>(argc, argv, PerformanceXsymm<double2>, o, false); break;
}
}