Search found 134 matches

by Matt Krzyaniak
Mon Jul 28, 2014 6:48 pm
Forum: General forum
Topic: Parallelization and esfit
Replies: 6
Views: 11647

Re: Parallelization and esfit

There is also the potential for offloading some of the computation to the videocard(nvidia CUDA) and parallelization that you gain from doing that, again though, if you keep it all in Matlab that's more toolboxes.(unless the core functions are rewritten in Fortran or C++ and run in Matlab through ME...
by Matt Krzyaniak
Sun Jul 27, 2014 2:00 pm
Forum: General forum
Topic: Parallelization and esfit
Replies: 6
Views: 11647

Re: Parallelization and esfit

Well technically you can run optimizations in parallel, you just can't use esfit. You would just need to find an appropriate minimization routine that runs in parallel and design a function that searches the parameter space you desire. Though with respect to parallelization larger speed gains might ...
by Matt Krzyaniak
Sun Jul 27, 2014 1:48 pm
Forum: General forum
Topic: esfit and maxTime
Replies: 8
Views: 15182

Re: esfit and maxTime

Why would you want to limit the time of esfit? By prematurely stopping an optimization you're not likely to be at a parameter space minimum(on the way but not there yet). Perhaps a better method would be to decrease the step tolerance or function tolerance for coarse optimizations in parameter space.
by Matt Krzyaniak
Fri Jul 25, 2014 6:21 am
Forum: General forum
Topic: esfit and maxTime
Replies: 8
Views: 15182

Re: esfit and maxTime

Another suggestion would be to parse how long pepper actually takes to run a single simulation through the use of tic and toc.

Code: Select all

tic;
pepper(Sys,Exp);
toc
With that in hand you can get a better idea of how long you need to make FitOpt.maxTime.