Pylops_MPI
#707
Replies: 1 comment
-
|
Hello @sadalan97, Short answer, you are the first to explore deblending with pylops-mpi, so what I say may turn out to be incorrect as I have never tried myself 😉 Having said that:
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Seismic Deblending Multinode Processing
Description
Hello, I am developing some seismic deblending tests using the 2D Radon Transform. Currently, all processing is done in parallel on a single node, but I am now exploring how to perform the processing in a multinode setup. This multinode parallel processing is new to me, so I am facing some difficulties adjusting my code.
Questions
Am I on the right track for configuring multinode processing?
How should I adjust the variable Bop (the data blending operator) to work correctly with MPI?
After all operator adjustments for MPI, will it be possible to use FISTA without issues, or will additional modifications be needed in the optimization algorithm?
In any case, I truly appreciate any help you all may be able to offer.
Initial adjustments
Initially, I adapted the
data_blended(resulting fromdata_blended = Bopcp * data1.ravel()) for MPI as follows:Beta Was this translation helpful? Give feedback.
All reactions