summaryrefslogtreecommitdiff
path: root/src/routines
diff options
context:
space:
mode:
authorCNugteren <web@cedricnugteren.nl>2015-07-01 09:38:04 +0200
committerCNugteren <web@cedricnugteren.nl>2015-07-01 09:38:04 +0200
commitb8d81a60d6881178fb1cfe7f88b34ec2445eca39 (patch)
treee85129f90ef6034f6aafc1cef36beadfafb95ffe /src/routines
parent8574f72d46f8f3572e2a5e9f24359d8da18ccf2a (diff)
Fixed typos in SYMM
Diffstat (limited to 'src/routines')
-rw-r--r--src/routines/xsymm.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/routines/xsymm.cc b/src/routines/xsymm.cc
index 97f35be8..b39eb24d 100644
--- a/src/routines/xsymm.cc
+++ b/src/routines/xsymm.cc
@@ -42,14 +42,14 @@ StatusCode Xsymm<T>::DoSymm(const Layout layout, const Side side, const Triangle
// Computes the k dimension. This is based on whether or not the symmetric matrix is A (on the
// left) or B (on the right) in the Xgemm routine.
- size_t k = (side == Side::kLeft) ? m : n;
+ 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));
if (ErrorIn(status)) { return status; }
// Determines which kernel to run based on the layout (the Xgemm kernel assumes column-major as
- // default) and on whether we are dealing with an upper or lower triangle of the symmetrix matrix
+ // default) and on whether we are dealing with an upper or lower triangle of the symmetric matrix
bool is_upper = ((triangle == Triangle::kUpper && layout != Layout::kRowMajor) ||
(triangle == Triangle::kLower && layout == Layout::kRowMajor));
auto kernel_name = (is_upper) ? "SymmUpperToSquared" : "SymmLowerToSquared";
@@ -75,7 +75,7 @@ StatusCode Xsymm<T>::DoSymm(const Layout layout, const Side side, const Triangle
kernel.SetArgument(7, temp_symm());
// Uses the common padding kernel's thread configuration. This is allowed, since the
- // symmetry-to-squared kernel uses the same parameters.
+ // symmetric-to-squared kernel uses the same parameters.
auto global = std::vector<size_t>{Ceil(CeilDiv(k, db_["PAD_WPTX"]), db_["PAD_DIMX"]),
Ceil(CeilDiv(k, db_["PAD_WPTY"]), db_["PAD_DIMY"])};
auto local = std::vector<size_t>{db_["PAD_DIMX"], db_["PAD_DIMY"]};