We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
hello, How to use slab decomposition for 3D FFT.
The text was updated successfully, but these errors were encountered:
That's described in the docs, see here for example.
Basically, if you're following the tutorial, you just need to change
pen = Pencil(dims, comm) # defaults to 2D decomposition in 3D
to
decomp_dims = (3,) # decompose 3rd dimension only (for example) pen = Pencil(dims, decomp_dims, comm)
Sorry, something went wrong.
No branches or pull requests
hello,
How to use slab decomposition for 3D FFT.
The text was updated successfully, but these errors were encountered: