Skip to content

Commit 71ef60e

Browse files
committed
Improve readability
1 parent 0342cc3 commit 71ef60e

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

source/source_hsolver/kernels/dngvd_op.h

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -97,13 +97,14 @@ struct dnevx_op
9797
///
9898
/// Input Parameters
9999
/// @param d : the type of device
100-
/// @param nstart : the number of cols of the matrix
101-
/// @param ldh : the number of rows of the matrix
102-
/// @param A : the hermitian matrix A in A x=lambda B x (row major)
100+
/// @param matrix_size : the size of square matrix
101+
/// @param lda : leading dimension of the matrix
102+
/// @param A : the hermitian matrix A in A x=lambda x (row major)
103+
/// @param num_eigenpairs : the number of eigenpairs to be calculated
103104
/// Output Parameter
104-
/// @param W : calculated eigenvalues
105-
/// @param V : calculated eigenvectors (row major)
106-
void operator()(const Device* d, const int nstart, const int ldh, const T* A, const int m, Real* W, T* V);
105+
/// @param eigenvalues: calculated eigenvalues
106+
/// @param eigenvectors: calculated eigenvectors (row major)
107+
void operator()(const Device *d, const int matrix_size, const int lda, const T *A, const int num_eigenpairs, Real *eigenvalues, T *eigenvectors);
107108
};
108109

109110
#if __CUDA || __UT_USE_CUDA || __ROCM || __UT_USE_ROCM

0 commit comments

Comments
 (0)