Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update to use latest ELPA library version #742

Merged
merged 1 commit into from
Oct 16, 2023
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 scripts/build_olcf_summit_gnu_elpa_essl.sh
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export SCALAPACK_LIBRARIES=${SCALAPACK_LIBRARIES:="-L$OLCF_NETLIB_SCALAPACK_ROOT

export BML_CUDA=${BML_CUDA:=yes}
export BML_ELPA=${BML_ELPA:=yes}
export ELPA_DIR=${ELPA_DIR:=/ccs/proj/csc304/elpa}
export ELPA_DIR=${ELPA_DIR:=/ccs/proj/csc304/elpa/nvidia-gcc}
export EXTRA_LINK_FLAGS=${EXTRA_LINK_FLAGS:="-lgfortran"}

#use jsrun to run tests on a compute node
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -380,7 +380,7 @@ void TYPED_FUNC(
elpa_set(handle, "solver", ELPA_SOLVER_2STAGE, &error_elpa);
assert(error_elpa == ELPA_OK);

elpa_set(handle, "gpu", 1, &error_elpa);
elpa_set(handle, "nvidia-gpu", 1, &error_elpa);
assert(error_elpa == ELPA_OK);

bml_matrix_t *Alocal = A->matrix;
Expand Down