You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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 from data_blended = Bopcp * data1.ravel()) for MPI as follows:
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
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