Help reduce the time.
2 次查看(过去 30 天)
显示 更早的评论
This one line takes 85% %runtime.
Splitting it up increases %runtime by 5%. I have tried gpu (although my knowledge is very limited there).
Help please!
q is a vector, p a scalar.
q=[mod(q(1)*q(2),p^2) q(3:end)];
Thank you for any suggestions.
5 个评论
Adam
2014-8-18
Is p changing every time through the loop? If not then you should pull out p^2 to be calculated just once. I wouldn't expect that to make a huge difference though.
回答(2 个)
Matz Johansson Bergström
2014-8-18
编辑:Matz Johansson Bergström
2014-8-18
On my computer it takes 0.0374 s (q = 1:10⁷). The code is essentialy copying data. I tried with just removing the second element
q(2) = []
but this takes 0.08 s , so this is not the way to do it. I instead noticed that we can write
tic
tmp = mod(q(1)*q(2), p^2);
q = q(2:end);
q(1) = tmp;
toc
The change is subtle but this takes 0.018 s, so it is approximately twice as fast.
Copying data is always a slow operation. Unless you really need to I would suggest you to keep the size of the vector and set elements to zero or something. Every time you take away the second element and shrink the vector, Matlab will copy the data.
To make sure we have done the best we can, consider the following
tic
f = q;
f(1) = f(1);
toc
This code copies the data from q to f and it takes 0.018 s , just as my suggestion.
OBS: In the above code I 'force' a copy by assigning f(1) to itself, otherwise Matlab will not copy until I use f later on. This is as fast you can get unless you change the way you handle the vector.
2 个评论
Matz Johansson Bergström
2014-8-18
I believe your version is forcing Matlab to evaluate and copy q twice.
I think that Matlab evaluates q(3:end), copies the data to a temporary vector (call it temp), then the slightly larger vector, [q1, temp] is copied to q. Matlab is thus interpreting the code and unfortunately cannot do a perfect job each time.
My version simply copies q(2:end) to q directly, once. Without that extra copying step.
Jan
2014-8-18
It is not feasible to discuss about a speed improvement of a single line of code. Without seeing the context it is impossible to guess the reasons for the total runtime.
Di you have a good reason for the massive copying of data? I do not see a benefit to copy q(3:end). Why let q unchanged and store the modified values separately?
1 个评论
另请参阅
类别
在 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!