From b114ea49a9228ee7a8bf1b00c092324c0ce972c3 Mon Sep 17 00:00:00 2001 From: Cedric Nugteren Date: Sun, 5 Mar 2017 15:06:14 +0100 Subject: Added first naive version of the batched AXPY routine --- src/routines/levelx/xaxpybatched.hpp | 46 ++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 src/routines/levelx/xaxpybatched.hpp (limited to 'src/routines/levelx/xaxpybatched.hpp') diff --git a/src/routines/levelx/xaxpybatched.hpp b/src/routines/levelx/xaxpybatched.hpp new file mode 100644 index 00000000..7fd14a74 --- /dev/null +++ b/src/routines/levelx/xaxpybatched.hpp @@ -0,0 +1,46 @@ + +// ================================================================================================= +// 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 XaxpyBatched routine. This is a non-blas batched version of AXPY. +// +// ================================================================================================= + +#ifndef CLBLAST_ROUTINES_XAXPYBATCHED_H_ +#define CLBLAST_ROUTINES_XAXPYBATCHED_H_ + +#include + +#include "routines/level1/xaxpy.hpp" + +namespace clblast { +// ================================================================================================= + +// See comment at top of file for a description of the class +template +class XaxpyBatched: public Xaxpy { + public: + + // Uses the regular Xaxpy routine + using Xaxpy::DoAxpy; + + // Constructor + XaxpyBatched(Queue &queue, EventPointer event, const std::string &name = "AXPYBATCHED"); + + // Templated-precision implementation of the routine + void DoAxpyBatched(const size_t n, const std::vector &alphas, + const std::vector> &x_buffers, const size_t x_inc, + const std::vector> &y_buffers, const size_t y_inc, + const size_t batch_count); +}; + +// ================================================================================================= +} // namespace clblast + +// CLBLAST_ROUTINES_XAXPYBATCHED_H_ +#endif -- cgit v1.2.3