Skip to content

Commit 679286e

Browse files
committed
Update heevx to use correct arg list
1 parent f98a920 commit 679286e

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

source/source_hsolver/kernels/hegvd_op.cpp

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,6 @@ struct heevx_op<T, base_device::DEVICE_CPU>
177177
// When lwork = -1, the demension of work will be assumed
178178
// Assume the denmension of work by output work[0]
179179
lapackConnector::heevx(
180-
1, // ITYPE = 1: A*x = (lambda)*B*x
181180
'V', // JOBZ = 'V': Compute eigenvalues and eigenvectors.
182181
'I', // RANGE = 'I': the IL-th through IU-th eigenvalues will be found.
183182
'L', // UPLO = 'L': Lower triangles of A and B are stored.
@@ -211,7 +210,6 @@ struct heevx_op<T, base_device::DEVICE_CPU>
211210
// obtained by the zhegvx operation is (nstart * nstart) and stored in zux (internal to the function). When
212211
// the function is output, the data of zux will be mapped to the corresponding position of V.
213212
lapackConnector::heevx(
214-
1, // ITYPE = 1: A*x = (lambda)*B*x
215213
'V', // JOBZ = 'V': Compute eigenvalues and eigenvectors.
216214
'I', // RANGE = 'I': the IL-th through IU-th eigenvalues will be found.
217215
'L', // UPLO = 'L': Lower triangles of A and B are stored.

0 commit comments

Comments
 (0)