// ================================================================================================= // 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 Xdotc routine. The precision is implemented using a template argument. // // ================================================================================================= #ifndef CLBLAST_ROUTINES_XDOTC_H_ #define CLBLAST_ROUTINES_XDOTC_H_ #include "internal/routines/level1/xdot.h" namespace clblast { // ================================================================================================= // See comment at top of file for a description of the class template class Xdotc: public Xdot { public: // Uses the regular Xdot routine using Xdot::DoDot; // Constructor Xdotc(Queue &queue, EventPointer event, const std::string &name = "DOTC"); // Templated-precision implementation of the routine StatusCode DoDotc(const size_t n, const Buffer &dot_buffer, const size_t dot_offset, 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); }; // ================================================================================================= } // namespace clblast // CLBLAST_ROUTINES_XDOTC_H_ #endif