Parfor/SPMD and Backwards Euler method for ODEs
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
As far as I know, a crucial assumption for using the aforementioned models is the independence between instructions so that the result at time t mustn't depend on the result at time t-1. That's why I'd ask if it is possible to adapt either the parfor or the SPMD model to solve ODEs with backwards Euler.
Thank you in advance for you answers.
0 Commenti
Risposte (1)
Jan
il 13 Set 2018
Solving ODEs cannot be parallelized in general. This is not a limitation of Matlab's PARFOR/SPMD, but the dependency between the steps prohibits the parallel evaluation.
You could use parfor to compute different integrations, e.g. for different parameters or initial values.
0 Commenti
Vedere anche
Categorie
Scopri di più su Ordinary Differential Equations in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!