CUDA Networks
|
Implementation of the Matrix::multiply_elementwise method for GPU-accelerated element-wise matrix multiplication. More...
Go to the source code of this file.
Functions | |
__global__ void | matrixMultiplyElementwiseKernel (const double *a, const double *b, double *c, int rows, int cols) |
CUDA kernel for element-wise matrix multiplication. More... | |
Implementation of the Matrix::multiply_elementwise method for GPU-accelerated element-wise matrix multiplication.
Definition in file matrix_multiply_elementwise.cu.
__global__ void matrixMultiplyElementwiseKernel | ( | const double * | a, |
const double * | b, | ||
double * | c, | ||
int | rows, | ||
int | cols | ||
) |
CUDA kernel for element-wise matrix multiplication.
a | Pointer to the first input matrix data. |
b | Pointer to the second input matrix data. |
c | Pointer to the output matrix data. |
rows | Number of rows in the matrices. |
cols | Number of columns in the matrices. |
Definition at line 19 of file matrix_multiply_elementwise.cu.