Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions source/source_hsolver/kernels/cuda/hegvd_op.cu
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ void destroyGpuSolverHandle()
}
}

#ifdef __LCAO
static inline
void xhegvd_wrapper(
const cublasFillMode_t& uplo,
Expand Down Expand Up @@ -57,6 +58,7 @@ void xhegvd_wrapper(
CHECK_CUDA(cudaFree(work));
CHECK_CUDA(cudaFree(devInfo));
}
#endif

static inline
void xhegvd_wrapper (
Expand Down Expand Up @@ -122,6 +124,7 @@ void xhegvd_wrapper (
CHECK_CUDA(cudaFree(devInfo));
}

#ifdef __LCAO
static inline
void xheevd_wrapper(
const cublasFillMode_t& uplo,
Expand All @@ -148,6 +151,7 @@ void xheevd_wrapper(
CHECK_CUDA(cudaFree(work));
CHECK_CUDA(cudaFree(devInfo));
}
#endif

static inline
void xheevd_wrapper (
Expand Down
Loading