// ================================================================================================= // 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 Xher kernels 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"( // ================================================================================================= // Symmetric version of the rank-1 matrix update kernel (HER, HPR, SYR, SPR) __kernel __attribute__((reqd_work_group_size(WGS1, WGS2, 1))) void Xher(const int n, const real_arg arg_alpha, const __global real* restrict xgm, const int x_offset, const int x_inc, __global real* restrict agm, const int a_offset, const int a_ld, const int is_upper, const int is_rowmajor) { const real alpha = GetRealArg(arg_alpha); // Register storage for X and XT real xvalues[WPT]; real xtvalues[WPT]; // Loads the X-vector #pragma unroll for (int w=0; w id2)) || (!is_upper && (id2 > id1))) { // Do nothing } // Loads A, performs the operation, and stores the result into A else { MatrixUpdate(id1, id2, n, n, agm, a_offset, a_ld, alpha, xvalues[w2], xtvalues[w1], is_upper); } } } } // ================================================================================================= // End of the C++11 raw string literal )" // =================================================================================================