Skip to content

Commit b5b5015

Browse files
committed
Use short name LAPACK style
1 parent b12674d commit b5b5015

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

source/source_hsolver/kernels/dngvd_op.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -113,9 +113,9 @@ struct heevx_op
113113
/// @param A : the hermitian matrix A in A x=lambda x
114114
/// @param neig : the number of eigenpairs to be calculated
115115
/// Output Parameter
116-
/// @param eigenvalues: calculated eigenvalues
117-
/// @param eigenvectors: calculated eigenvectors
118-
void operator()(const Device *d, const int ndim, const int lda, const T *A, const int neig, Real *eigenvalues, T *eigenvectors);
116+
/// @param w: calculated eigenvalues
117+
/// @param z: calculated eigenvectors
118+
void operator()(const Device *d, const int ndim, const int lda, const T *A, const int neig, Real *w, T *z);
119119
};
120120

121121
#if __CUDA || __UT_USE_CUDA || __ROCM || __UT_USE_ROCM

0 commit comments

Comments
 (0)