Differences between revisions 2 and 3
Revision 2 as of 2007-09-16 10:35:48
Size: 957
Comment:
Revision 3 as of 2007-09-16 11:38:45
Size: 964
Comment:
Deletions are marked like this. Additions are marked like this.
Line 11: Line 11:
 * Tests on Hal: ==== Tests on Hal ====
Line 26: Line 26:
 * I. Azzin, R. Girardi, M. Ratto (2007) "Parallelization of Matlab codes under Windows platform for Bayesian estimation: a DYNARE application" [http://www.cepremap.cnrs.fr/juillard/dynare_conf_07/girardi.pdf]  * I. Azzini, R. Girardi, M. Ratto (2007) "Parallelization of Matlab codes under Windows platform for Bayesian estimation: a DYNARE application" [http://www.cepremap.cnrs.fr/juillard/dynare_conf_07/girardi.pdf]

Issues around parallel computing

Matlab

Tests on Hal

x = randn(100,100);
tic; for i=1:100000; y=x*x; end; toc
  • 1 thread: 21 sec
  • 4 threads: 24 sec

x = randn(1000,1000);
tic; for i=1:100; y=x*x; end; toc

Dynare

DynareWiki: ParallelComputing (last edited 2009-03-25 17:11:59 by localhost)