summaryrefslogtreecommitdiff
path: root/src/routines/level3/xsymm.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/routines/level3/xsymm.cc')
-rw-r--r--src/routines/level3/xsymm.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/routines/level3/xsymm.cc b/src/routines/level3/xsymm.cc
index d88d4653..379e2908 100644
--- a/src/routines/level3/xsymm.cc
+++ b/src/routines/level3/xsymm.cc
@@ -45,7 +45,7 @@ StatusCode Xsymm<T>::DoSymm(const Layout layout, const Side side, const Triangle
auto k = (side == Side::kLeft) ? m : n;
// Checks for validity of the squared A matrix
- auto status = TestMatrixA(k, k, a_buffer, a_offset, a_ld, sizeof(T));
+ auto status = TestMatrixA(k, k, a_buffer, a_offset, a_ld);
if (ErrorIn(status)) { return status; }
// Determines which kernel to run based on the layout (the Xgemm kernel assumes column-major as