Skip to content
Open
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
Empty file modified interfaces/ASE_interface/abacuslite/xtest.sh
100644 → 100755
Empty file.
8 changes: 7 additions & 1 deletion source/source_hsolver/module_genelpa/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
add_library(genelpa OBJECT elpa_new.cpp elpa_new_real.cpp elpa_new_complex.cpp utils.cpp)
add_library(genelpa OBJECT
elpa_new.cpp
elpa_new_real.cpp
elpa_new_complex.cpp
elpa_runtime_check.cpp
utils.cpp
)

if(ENABLE_COVERAGE)
add_coverage(genelpa)
Expand Down
5 changes: 5 additions & 0 deletions source/source_hsolver/module_genelpa/elpa_new.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
#include "elpa_new.h"

#include "elpa_runtime_check.h"

#include "elpa_solver.h"
extern "C"
{
Expand Down Expand Up @@ -212,7 +214,10 @@ void ELPA_Solver::setKernel(bool isReal, int kernel)
if (isReal)
elpa_set(NEW_ELPA_HANDLE_POOL[handle_id], "real_kernel", kernel, &error);
else
{
elpa_set(NEW_ELPA_HANDLE_POOL[handle_id], "complex_kernel", kernel, &error);
validate_elpa_complex_kernel(kernel, error, comm);
}
}

void ELPA_Solver::setQR(int useQR)
Expand Down
Loading
Loading