paralize (v2006a)

This function is useful for those with a heterogeneous network of computers with a common filesys.
2,9K download
Aggiornato 23 ott 2006

Nessuna licenza

For users with a heterogeneous network of computers with a common file system and a problem that lend itself to parallelization these functions might be of help. Such problems may be finite difference calculations of gradients, parametric studies or iterative solutions of equation systems. Say, for instance, that you have 20 large eigenvalue problems that you want to solve in parallel.

Then the code is:

A=rand(500,500,20);% Generate 20 500x500 matrices
d=paralize('eig',A);% Solve with eig in parallel

It is as simple as that, provided you have started the servers. Servers are started with the MATLAB command serve. Could it be more easy?

HTML-files describe the use in more detail.


paralize.m
serve.m
serve.html
paralize.html
paralize.jpg

Cita come

Thomas Abrahamsson (2025). paralize (v2006a) (https://it.mathworks.com/matlabcentral/fileexchange/211-paralize-v2006a), MATLAB Central File Exchange. Recuperato .

Compatibilità della release di MATLAB
Creato con R2006a
Compatibile con qualsiasi release
Compatibilità della piattaforma
Windows macOS Linux
Categorie
Scopri di più su Parallel Computing in Help Center e MATLAB Answers
Tag Aggiungi tag

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!
Versione Pubblicato Note della release
1.0.0.0

This old contribution (from 1997) needed an overhaul. It now supports versions of Matlab up to 7.2 thanks to my soulmate Andrzej Karbowski, Warsaw.
Some bugfixes were also made.