summaryrefslogtreecommitdiff
path: root/src/routines/level3/xtrsm.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/routines/level3/xtrsm.cpp')
-rw-r--r--src/routines/level3/xtrsm.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/routines/level3/xtrsm.cpp b/src/routines/level3/xtrsm.cpp
index 61669e44..119bf25d 100644
--- a/src/routines/level3/xtrsm.cpp
+++ b/src/routines/level3/xtrsm.cpp
@@ -73,7 +73,7 @@ void Xtrsm<T>::TrsmColMajor(const Side side, const Triangle triangle,
const Buffer<T> &b_buffer, const size_t b_offset, const size_t b_ld) {
// Settings
- constexpr auto block_size = size_t{32}; // tuneable
+ constexpr auto block_size = size_t{16}; // tuneable
// Makes sure all dimensions are larger than zero
if ((m == 0) || (n == 0)) { throw BLASError(StatusCode::kInvalidDimension); }