Skip to content

Commit a53930b

Browse files
authored
change uplo to U for lapack_hegvd to be consistent with former routine (#6868)
1 parent 72dca3f commit a53930b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • source/source_base/module_container/ATen/kernels/cuda

source/source_base/module_container/ATen/kernels/cuda/lapack.cu

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -289,7 +289,7 @@ struct lapack_hegvd<T, DEVICE_GPU> {
289289
{
290290
const int itype = 1;
291291
const char jobz = 'V';
292-
const char uplo = 'L';
292+
const char uplo = 'U';
293293
cudaErrcheck(cudaMemcpy(eigen_vec, Mat_A, sizeof(T) * dim * lda, cudaMemcpyDeviceToDevice));
294294

295295
// prevent B from being overwritten by Cholesky

0 commit comments

Comments
 (0)