Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion env.set.local0
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ module load cmake
#module load libcint
#export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/home/ndmeier/libraries/libcint/lib64
#export LIBCINT_PATH=/home/ndmeier/libraries/libcint
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/home/paulzim/libcint-master/
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/home/paulzim/libcint-master/lib64
export LIBCINT_PATH=/home/paulzim/libcint-master/


Expand Down
5 changes: 5 additions & 0 deletions src/integrals/cuda_util.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1171,6 +1171,9 @@ int invert_cusolver(int N, double* A, cusolverDnHandle_t& cu_hdl)

void solve_axeb_gpu(int dim, double* A, double* b, cusolverDnHandle_t& cu_hdl)
{
#if !USE_ACC
solve_axeb(dim,A,b);
#else
int* d_info = new int[1];
int* d_ipiv = new int[dim];
double* d_X = new double[dim];
Expand Down Expand Up @@ -1212,5 +1215,7 @@ void solve_axeb_gpu(int dim, double* A, double* b, cusolverDnHandle_t& cu_hdl)
delete [] d_ipiv;
delete [] d_X;

#endif

return;
}
Loading