decrease the elapse time

조회 수: 4 (최근 30일)
Asliddin Komilov
Asliddin Komilov 2019년 7월 24일
답변: Asliddin Komilov 2019년 8월 4일
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
Asliddin Komilov
Asliddin Komilov 2019년 7월 24일
this is what I got running the 'Ta_I_yearly_by_azimangle' for i=5
Elapsed time is 101.771973 seconds.
Elapsed time is 37.928433 seconds.
Elapsed time is 428.026140 seconds.
Elapsed time is 297.756538 seconds.
Elapsed time is 138.780894 seconds.
code file 'environment' run time is almost the same always, around 28 sec., the rest is "Self time (built-ins, overhead, etc.)", that is so much different for each iteration (see the attachment). Actually I don't know what that means.
Rik
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.

댓글을 달려면 로그인하십시오.

채택된 답변

Asliddin Komilov
Asliddin Komilov 2019년 8월 4일
appointing to 'simple' and 'int16' made huge difference

추가 답변 (2개)

Sulaymon Eshkabilov
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
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.
Asliddin Komilov
Asliddin Komilov 2019년 7월 25일
as I wrote before, the whole code 'environment' is not of concern because it takes the same time each iteration around 28 seconds, but something else is happening outside of it which increase the elapse time in each iteration differently, as you can see above same iteration takes 38 seconds on time and next time its 428 seconds, and there is no distinct 'signature', the time is not increasing or decreasing with each next iteration, so if I run it once again, ellapse times for 5 differnt 'i' will be different. That is what I cannot understand why it is happening, and how to improve.

댓글을 달려면 로그인하십시오.


Jan
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.
  댓글 수: 1
Asliddin Komilov
Asliddin Komilov 2019년 7월 25일
thanks, I also had a thought it could be the computer, but I have 8g ram and 64 bit system, shall I uninstall some things? I have 2016a matlab, shall I look for a newer version? I need a solution because I need variable 'i' be not 5 but 36 and also variing 'r' variable for the best result.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Logical에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by