![]() |
PLSSVM - Parallel Least Squares Support Vector Machine
2.0.0
A Least Squares Support Vector Machine implementation using different backends.
|
Functor to calculate the q vector using the linear C-SVM kernel.
More...
#include <q_kernel.hpp>
Public Types | |
| using | real_type = T |
| The type of the data. | |
Public Member Functions | |
| device_kernel_q_linear (real_type *q, const real_type *data_d, const real_type *data_last, const kernel_index_type num_rows, const kernel_index_type feature_range) | |
Construct a new device kernel calculating the q vector using the linear C-SVM kernel. More... | |
| void | operator() (::sycl::id< 1 > index) const |
| Function call operator overload performing the actual calculation. More... | |
Functor to calculate the q vector using the linear C-SVM kernel.
Supports multi-GPU execution.
| T | the type of the data |
|
inline |
Construct a new device kernel calculating the q vector using the linear C-SVM kernel.
| [out] | q | the calculated q vector |
| [in] | data_d | the one-dimensional data matrix |
| [in] | data_last | the last row in the data matrix |
| [in] | num_rows | the number of rows in the data matrix |
| [in] | feature_range | number of features used for the calculation |
|
inline |
Function call operator overload performing the actual calculation.
| [in] | index | the sycl::id identifying an instance of the functor executing at each point in a sycl::range |