CUDA Networks
matrix_get_rows.cu
Go to the documentation of this file.
1 /**
2  * @file matrix_get_rows.cu
3  * @brief Implementation of the Matrix::get_rows method.
4  */
5 #include "matrix.h"
6 
7 int Matrix::get_rows() const {
8  // Return the number of rows in the matrix
9  return rows;
10 }
int get_rows() const
Get the number of rows in the matrix.
Defines the Matrix class for GPU-accelerated matrix operations.