summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCedric Nugteren <web@cedricnugteren.nl>2017-10-27 22:07:43 +0200
committerCedric Nugteren <web@cedricnugteren.nl>2017-10-27 22:07:43 +0200
commit449577cf07ac79768555a947e7036ee674c108c5 (patch)
tree2191bad93edfcad4f3e49b12465836297fdac548 /src
parent44f7fa628a42d1e928c7c1c3a1bfca5de37de276 (diff)
Reduced TRSM block-size for better numerical stability
Diffstat (limited to 'src')
-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); }