Skip to content

Commit

Permalink
Merge pull request #6 from CHIP-SPV/sarbojit_branch
Browse files Browse the repository at this point in the history
Fix for undefine hipsolverDsygvd_bufferSize issue
  • Loading branch information
Sarbojit2019 authored Jul 6, 2023
2 parents b14d490 + 073cac8 commit eabf786
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/hipsolver.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2376,11 +2376,11 @@ hipsolverStatus_t hipsolverDsygvd_bufferSize(hipsolverHandle_t handle,
hipsolverEigMode_t jobz,
hipsolverFillMode_t uplo,
int n,
float* A,
double* A,
int lda,
float* B,
double* B,
int ldb,
float* W,
double* W,
int* lwork){
HIPSOLVER_TRY
if (A == nullptr || B == nullptr || W == nullptr || lwork == nullptr) {
Expand Down

0 comments on commit eabf786

Please sign in to comment.