summaryrefslogtreecommitdiff
path: root/test/performance/routines/xsymm.cc
diff options
context:
space:
mode:
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;
}
}