decrease the elapse time
조회 수: 4 (최근 30일)
이전 댓글 표시
this set of files organized to solve 'environment' function with ranges of different variables. I followed all possible instructions but the elapse time is growing with each iteration inside the script 'Ta_I_yearly_by_azimangle' so I have to take bigger steps. Maybe the whole thing could be organized some other way to make it faster, I don't know, so I need your help here, thanks.
댓글 수: 6
Rik
2019년 7월 24일
You should use the actual profiler. In most releases that is called 'run and time'. That will show you a breakdown by function and line by line.
채택된 답변
추가 답변 (2개)
Sulaymon Eshkabilov
2019년 7월 24일
Hi,
You'd need to associate all of your calc's into one function file and no need to save all variable/calc values from every iteration. Save the only ones that you'd need as outputs from your main function file. ALso, put all of your external fuinction files as a nested functions within your main function file. All these steps should speed up your simulations.
Good luck.
댓글 수: 3
Rik
2019년 7월 25일
Why suggest such drastic changes before Asliddin has looked at the profiler? Have you tried the profiler yourself and concluded there isn't really a specific line of code that consumes too much time?
Making other functions internal functions also has downsides. It might not be required (or even desirable) to share variables between functions like that.
I suspect the largest gain in performance would be to find a way to express some or all of the loops as array operations.
Jan
2019년 7월 25일
The output of the profile is useful - thanks.
The most time is spent here:
[days(:,:,i), time(:,:,:,i), I(:,:,:,i), Ta(:,:,:,i), ...
angle(:,i), Ir(:,:,:,i), Id(:,:,:,i), Gincl(:,:,:,i), r(:,:,:,i)] = ...
Ta_I_yearly_by_angle(azim_angle(i));
But this takes between 36 and 376 seconds. This is not an effect inside Ta_I_yearly_by_angle.
My guess is, that your memory is exhausted and sometime the slow disk caching is used. So please check the memory consumption. during the code runs. Pre-allocating is a good programming style already, but sometimes only more RAM helps.
참고 항목
카테고리
Help Center 및 File Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!