summaryrefslogtreecommitdiff
path: root/src/routines/level3/xsymm.cc
diff options
context:
space:
mode:
authorCNugteren <web@cedricnugteren.nl>2015-10-12 08:35:58 +0200
committerCNugteren <web@cedricnugteren.nl>2015-10-12 08:35:58 +0200
commitf74c9a564074174b6cb43d3f261be82ace6538d5 (patch)
tree0eb53439362ec23a98fa60d9b8c270690a51cecc /src/routines/level3/xsymm.cc
parent54a8723f8cd4f34a08d651216d680578ffc47fa5 (diff)
Routine names are now all default arguments defined in the header
Diffstat (limited to 'src/routines/level3/xsymm.cc')
-rw-r--r--src/routines/level3/xsymm.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/routines/level3/xsymm.cc b/src/routines/level3/xsymm.cc
index 37c08d3b..583d5c7d 100644
--- a/src/routines/level3/xsymm.cc
+++ b/src/routines/level3/xsymm.cc
@@ -21,8 +21,8 @@ namespace clblast {
// Constructor: forwards to base class constructor
template <typename T>
-Xsymm<T>::Xsymm(Queue &queue, Event &event):
- Xgemm<T>(queue, event) {
+Xsymm<T>::Xsymm(Queue &queue, Event &event, const std::string &name):
+ Xgemm<T>(queue, event, name) {
}
// =================================================================================================