Automatic Differentiation
 
Loading...
Searching...
No Matches

◆ row_vector_matrix_multiply()

__kernel void stan::math::opencl_kernels::row_vector_matrix_multiply ( const __global double *  A,
const __global double *  B,
__global double *  R,
const int  N,
const int  K,
unsigned int  view_A,
unsigned int  view_B 
)

Row vector-matrix multiplication R=A*B on the OpenCL device.

Parameters
[in]Arow vector in row vector-matrix multiplication
[in]Bmatrix in row vector-matrix multiplication
[out]Rthe output vector
[in]NNumber of cols for row vector A and number of rows for matrix B
[in]KNumber of cols for matrix B
[in]view_Athe triangularity of A (lower, upper or none)
[in]view_Bthe triangularity of B (lower, upper or none)

Definition at line 310 of file matrix_multiply.hpp.