From 938ca2707fed28cff5ad35d2472c09828ef08ca7 Mon Sep 17 00:00:00 2001 From: CNugteren Date: Fri, 31 Jul 2015 17:35:42 +0200 Subject: Added HEMV routine --- include/internal/routines/level2/xhemv.h | 56 ++++++++++++++++++++++++++++++++ 1 file changed, 56 insertions(+) create mode 100644 include/internal/routines/level2/xhemv.h (limited to 'include/internal') diff --git a/include/internal/routines/level2/xhemv.h b/include/internal/routines/level2/xhemv.h new file mode 100644 index 00000000..4c80fffe --- /dev/null +++ b/include/internal/routines/level2/xhemv.h @@ -0,0 +1,56 @@ + +// ================================================================================================= +// This file is part of the CLBlast project. The project is licensed under Apache Version 2.0. This +// project loosely follows the Google C++ styleguide and uses a tab-size of two spaces and a max- +// width of 100 characters per line. +// +// Author(s): +// Cedric Nugteren +// +// This file implements the Xhemv routine. It is based on the generalized matrix multiplication +// routine (Xgemv). The implementation is very similar to the Xsymv routine. +// +// ================================================================================================= + +#ifndef CLBLAST_ROUTINES_XHEMV_H_ +#define CLBLAST_ROUTINES_XHEMV_H_ + +#include "internal/routines/level2/xgemv.h" + +namespace clblast { +// ================================================================================================= + +// See comment at top of file for a description of the class +template +class Xhemv: public Xgemv { + public: + + // Members and methods from the base class + using Routine::db_; + using Routine::context_; + using Routine::GetProgramFromCache; + using Routine::TestMatrixA; + using Routine::RunKernel; + using Routine::ErrorIn; + + // Uses the regular Xgemv routine + using Xgemv::DoGemv; + + // Constructor + Xhemv(Queue &queue, Event &event); + + // Templated-precision implementation of the routine + StatusCode DoHemv(const Layout layout, const Triangle triangle, + const size_t n, + const T alpha, + const Buffer &a_buffer, const size_t a_offset, const size_t a_ld, + const Buffer &x_buffer, const size_t x_offset, const size_t x_inc, + const T beta, + const Buffer &y_buffer, const size_t y_offset, const size_t y_inc); +}; + +// ================================================================================================= +} // namespace clblast + +// CLBLAST_ROUTINES_XHEMV_H_ +#endif -- cgit v1.2.3