summaryrefslogtreecommitdiff
path: root/src/routines/level2/xspr.cc
diff options
context:
space:
mode:
authorCedric Nugteren <web@cedricnugteren.nl>2016-03-06 15:48:11 +0100
committerCedric Nugteren <web@cedricnugteren.nl>2016-03-06 15:48:11 +0100
commit306bf67660da4f1adacaedf9066925240abf4ea9 (patch)
tree6f94fcd0d394e9874eaa24e637b7c56e0b2c8e0d /src/routines/level2/xspr.cc
parent60da54da5d8cb8dc763c13ba48ec6d8e557a609d (diff)
Added preliminary support for xHPR2 and xSPR2 routines
Diffstat (limited to 'src/routines/level2/xspr.cc')
-rw-r--r--src/routines/level2/xspr.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/routines/level2/xspr.cc b/src/routines/level2/xspr.cc
index 7ef41fba..2d998e0b 100644
--- a/src/routines/level2/xspr.cc
+++ b/src/routines/level2/xspr.cc
@@ -37,7 +37,8 @@ StatusCode Xspr<T>::DoSpr(const Layout layout, const Triangle triangle,
// Specific Xspr functionality is implemented in the kernel using defines
return DoHer(layout, triangle, n, alpha,
x_buffer, x_offset, x_inc,
- ap_buffer, ap_offset, n, true);
+ ap_buffer, ap_offset, n,
+ true); // packed matrix
}
// =================================================================================================