summaryrefslogtreecommitdiff
path: root/src/routines/level2/xhpr.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/routines/level2/xhpr.cpp')
-rw-r--r--src/routines/level2/xhpr.cpp18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/routines/level2/xhpr.cpp b/src/routines/level2/xhpr.cpp
index 225ebfe5..7e517c59 100644
--- a/src/routines/level2/xhpr.cpp
+++ b/src/routines/level2/xhpr.cpp
@@ -28,17 +28,17 @@ Xhpr<T,U>::Xhpr(Queue &queue, EventPointer event, const std::string &name):
// The main routine
template <typename T, typename U>
-StatusCode Xhpr<T,U>::DoHpr(const Layout layout, const Triangle triangle,
- const size_t n,
- const U alpha,
- const Buffer<T> &x_buffer, const size_t x_offset, const size_t x_inc,
- const Buffer<T> &ap_buffer, const size_t ap_offset) {
+void Xhpr<T,U>::DoHpr(const Layout layout, const Triangle triangle,
+ const size_t n,
+ const U alpha,
+ const Buffer<T> &x_buffer, const size_t x_offset, const size_t x_inc,
+ const Buffer<T> &ap_buffer, const size_t ap_offset) {
// Specific Xhpr 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); // packed matrix
+ DoHer(layout, triangle, n, alpha,
+ x_buffer, x_offset, x_inc,
+ ap_buffer, ap_offset, n,
+ true); // packed matrix
}
// =================================================================================================