summaryrefslogtreecommitdiff
path: root/include/internal/routines/level3/xhemm.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/internal/routines/level3/xhemm.h')
-rw-r--r--include/internal/routines/level3/xhemm.h24
1 files changed, 11 insertions, 13 deletions
diff --git a/include/internal/routines/level3/xhemm.h b/include/internal/routines/level3/xhemm.h
index 6cc9d9ec..5f1e8723 100644
--- a/include/internal/routines/level3/xhemm.h
+++ b/include/internal/routines/level3/xhemm.h
@@ -25,30 +25,28 @@ template <typename T>
class Xhemm: public Xgemm<T> {
public:
- // Uses several variables from the Routine class
- using Routine::db_;
- using Routine::context_;
-
- // Uses several helper functions from the Routine class
- using Routine::RunKernel;
- using Routine::ErrorIn;
- using Routine::TestMatrixA;
- using Routine::GetProgramFromCache;
+ // Members and methods from the base class
+ using Routine<T>::db_;
+ using Routine<T>::context_;
+ using Routine<T>::GetProgramFromCache;
+ using Routine<T>::TestMatrixA;
+ using Routine<T>::RunKernel;
+ using Routine<T>::ErrorIn;
// Uses the regular Xgemm routine
using Xgemm<T>::DoGemm;
// Constructor
- Xhemm(CommandQueue &queue, Event &event);
+ Xhemm(Queue &queue, Event &event);
// Templated-precision implementation of the routine
StatusCode DoHemm(const Layout layout, const Side side, const Triangle triangle,
const size_t m, const size_t n,
const T alpha,
- const Buffer &a_buffer, const size_t a_offset, const size_t a_ld,
- const Buffer &b_buffer, const size_t b_offset, const size_t b_ld,
+ const Buffer<T> &a_buffer, const size_t a_offset, const size_t a_ld,
+ const Buffer<T> &b_buffer, const size_t b_offset, const size_t b_ld,
const T beta,
- const Buffer &c_buffer, const size_t c_offset, const size_t c_ld);
+ const Buffer<T> &c_buffer, const size_t c_offset, const size_t c_ld);
};
// =================================================================================================