// ================================================================================================= // 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 contains the Xger kernel (generic version) for rank-1 matrix update. // // ================================================================================================= // Enables loading of this file using the C++ pre-processor's #include (C++11 standard raw string // literal). Comment-out this line for syntax-highlighting when developing. R"( // ================================================================================================= // Parameters set by the tuner or by the database. Here they are given a basic default value in case // this kernel file is used outside of the CLBlast library. #ifndef WGS1 #define WGS1 8 // The local work-group size in first dimension #endif #ifndef WGS2 #define WGS2 8 // The local work-group size in second dimension #endif #ifndef WPT #define WPT 1 // The amount of work-per-thread in both dimensions #endif // ================================================================================================= // Row-major version of the kernel __attribute__((reqd_work_group_size(WGS1, WGS2, 1))) __kernel void Xger(const int max_one, const int max_two, const real alpha, const __global real* restrict xgm, const int x_offset, const int x_inc, const __global real* ygm, const int y_offset, const int y_inc, __global real* restrict agm, const int a_offset, const int a_ld, const int is_rowmajor) { // Register storage for X and Y real xvalues[WPT]; real yvalues[WPT]; // Row-major version if (is_rowmajor) { // Loads the X-vector #pragma unroll for (int w=0; w