From f726fbdc9fef937fbe32222f0e66aac8d7e2678c Mon Sep 17 00:00:00 2001 From: Cedric Nugteren Date: Sat, 18 Jun 2016 20:20:13 +0200 Subject: Moved all headers into the source tree, changed headers to .hpp extension --- include/internal/routines/level2/xhpr2.h | 46 -------------------------------- 1 file changed, 46 deletions(-) delete mode 100644 include/internal/routines/level2/xhpr2.h (limited to 'include/internal/routines/level2/xhpr2.h') diff --git a/include/internal/routines/level2/xhpr2.h b/include/internal/routines/level2/xhpr2.h deleted file mode 100644 index d95e7b61..00000000 --- a/include/internal/routines/level2/xhpr2.h +++ /dev/null @@ -1,46 +0,0 @@ - -// ================================================================================================= -// 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 Xhpr2 routine. The precision is implemented using a template argument. -// -// ================================================================================================= - -#ifndef CLBLAST_ROUTINES_XHPR2_H_ -#define CLBLAST_ROUTINES_XHPR2_H_ - -#include "internal/routines/level2/xher2.h" - -namespace clblast { -// ================================================================================================= - -// See comment at top of file for a description of the class -template -class Xhpr2: public Xher2 { - public: - - // Uses the regular Xher2 routine - using Xher2::DoHer2; - - // Constructor - Xhpr2(Queue &queue, EventPointer event, const std::string &name = "HPR2"); - - // Templated-precision implementation of the routine - StatusCode DoHpr2(const Layout layout, const Triangle triangle, - const size_t n, - const T alpha, - const Buffer &x_buffer, const size_t x_offset, const size_t x_inc, - const Buffer &y_buffer, const size_t y_offset, const size_t y_inc, - const Buffer &ap_buffer, const size_t ap_offset); -}; - -// ================================================================================================= -} // namespace clblast - -// CLBLAST_ROUTINES_XHPR2_H_ -#endif -- cgit v1.2.3