CUDA Networks
|
Implementation of the Matrix::select_batch method for selecting a subset of the matrix. More...
Go to the source code of this file.
Functions | |
__global__ void | selectBatchKernel (const double *src, double *dst, int src_cols, int dst_cols, int start_row, int start_col, int num_rows, int num_cols) |
CUDA kernel for selecting a subset of the matrix. More... | |
Implementation of the Matrix::select_batch method for selecting a subset of the matrix.
Definition in file matrix_select_batch.cu.
__global__ void selectBatchKernel | ( | const double * | src, |
double * | dst, | ||
int | src_cols, | ||
int | dst_cols, | ||
int | start_row, | ||
int | start_col, | ||
int | num_rows, | ||
int | num_cols | ||
) |
CUDA kernel for selecting a subset of the matrix.
src | Pointer to the source matrix data. |
dst | Pointer to the destination matrix data. |
src_cols | Number of columns in the source matrix. |
dst_cols | Number of columns in the destination matrix. |
start_row | Starting row index. |
start_col | Starting column index. |
num_rows | Number of rows to select. |
num_cols | Number of columns to select. |
Definition at line 21 of file matrix_select_batch.cu.