Stan Math Library
4.9.0
Automatic Differentiation
|
__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.
[in] | A | row vector in row vector-matrix multiplication |
[in] | B | matrix in row vector-matrix multiplication |
[out] | R | the output vector |
[in] | N | Number of cols for row vector A and number of rows for matrix B |
[in] | K | Number of cols for matrix B |
[in] | view_A | the triangularity of A (lower, upper or none) |
[in] | view_B | the triangularity of B (lower, upper or none) |
Definition at line 310 of file matrix_multiply.hpp.