-
Notifications
You must be signed in to change notification settings - Fork 195
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
Distributed tridiagonal Fourier solver #3689
Conversation
Co-authored-by: Navid C. Constantinou <navidcy@users.noreply.github.com>
Co-authored-by: Navid C. Constantinou <navidcy@users.noreply.github.com>
…nigans.jl into ss/load-balance-and-corners
…o ss/distributed-fft
src/DistributedComputations/distributed_fft_tridiagonal_solver.jl
Outdated
Show resolved
Hide resolved
src/DistributedComputations/distributed_fft_tridiagonal_solver.jl
Outdated
Show resolved
Hide resolved
src/DistributedComputations/distributed_fft_tridiagonal_solver.jl
Outdated
Show resolved
Hide resolved
Co-authored-by: Tomas Chor <tomaschor@gmail.com>
Co-authored-by: Tomas Chor <tomaschor@gmail.com>
Co-authored-by: Tomas Chor <tomaschor@gmail.com>
Co-authored-by: Tomas Chor <tomaschor@gmail.com>
Co-authored-by: Tomas Chor <tomaschor@gmail.com>
…ceananigans.jl into ss/distributed-tridiagonal-solve
Just to clarify --- the mixed tridiagonal + FFT solver also needs eigenvalues, doesn't it? |
yep, it does but they are "embedded" in the diagonal terms of the tridiagonal solver. So to clarify, there is no need for an additional eigenvalue field because these are already included in bathced_tridiagonal_solver |
I meant to ask this on the other PR but forgot: how are the scalings for this algorithm? Any recommendations when using GPU partitioning on nonhydrostatic models? |
Thanks that's super useful info! |
This PR introduces a distributed pressure solver for grids that are stretched in one direction. The algorithm implemented here is the same as the one described in #2538 but it uses the FFT and transposes built in #3279