Skip to content
New issue

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

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

Already on GitHub? # to your account

Generalised eigenvalues solver with pre-factorised B matrix #18

Merged
merged 26 commits into from
Jul 3, 2024
Merged
Changes from 1 commit
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
c914a6a
update spack and use +gfortran variant
RMeli Jun 2, 2024
e24aca9
Merge branch 'main' of https://github.com/RMeli/DLA-Future-Fortran
RMeli Jun 21, 2024
d3e01a6
sed gvx to gvd
RMeli Jun 21, 2024
b385a8c
factorized api
RMeli Jun 24, 2024
bc8bd6d
test
RMeli Jun 24, 2024
0b8741f
test factorized
RMeli Jun 24, 2024
8d9ed3f
fix scalapack
RMeli Jun 24, 2024
6981d88
dlaf 0.6.0 in ci
RMeli Jun 25, 2024
ef99ed3
Update spack/packages/dla-future-fortran/package.py
RMeli Jun 25, 2024
939a6a0
Merge branch 'gvx-to-gvd' into gvd-factorized
RMeli Jun 26, 2024
d1fdc6d
update cache tag
RMeli Jun 26, 2024
920ece3
Merge branch 'main' into gvx-to-gvd
RMeli Jun 26, 2024
ad6335b
try force
RMeli Jun 26, 2024
23abb21
Merge branch 'gvx-to-gvd' of https://github.com/RMeli/DLA-Future-Fort…
RMeli Jun 26, 2024
0d80dae
Update test/helpers/pxhegvd.fypp
RMeli Jun 26, 2024
5f82327
try prvious tag
RMeli Jun 26, 2024
9bbcec0
re-try working tag
RMeli Jun 26, 2024
2eff184
Merge branch 'gvx-to-gvd' into gvd-factorized
RMeli Jun 26, 2024
982334f
changelog
RMeli Jun 26, 2024
84bdfb5
Merge branch 'gvd-factorized' of https://github.com/RMeli/DLA-Future-…
RMeli Jun 26, 2024
f306763
Merge branch 'gvx-to-gvd' into gvd-factorized
RMeli Jun 26, 2024
591275e
changelog
RMeli Jun 26, 2024
c223efb
Merge branch 'eth-cscs:main' into main
RMeli Jun 26, 2024
b1ef256
merge main
RMeli Jun 26, 2024
f4569bb
fix
RMeli Jun 26, 2024
64602e4
add check on eigenvectors too for good measure
RMeli Jun 27, 2024
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
Prev Previous commit
Next Next commit
fix scalapack
  • Loading branch information
RMeli committed Jun 24, 2024
commit 8d9ed3fe39f401de9142ad7df8f4d61c06d9c2a6
4 changes: 2 additions & 2 deletions test/helpers/pxhegvd.fypp
Original file line number Diff line number Diff line change
@@ -170,7 +170,7 @@ contains

! ScaLAPACK
#:if type == 'real'
call p${name}$gvd( &
call p${name}$gvx( &
1, 'V', 'A', 'L', &
n, A_local_scalapack, 1, 1, desca_local_scalapack, &
B_local_scalapack, 1, 1, descb_local_scalapack, &
@@ -179,7 +179,7 @@ contains
work, lwork, iwork, liwork, ifail, iclustr, gap, info &
)
#:else
call p${name}$gvd( &
call p${name}$gvx( &
1, 'V', 'A', 'L', &
n, A_local_scalapack, 1, 1, desca_local_scalapack, &
B_local_scalapack, 1, 1, descb_local_scalapack, &