Code in live script run much slow

85 ビュー (過去 30 日間)
Xinyu Zhang
Xinyu Zhang 2016 年 11 月 13 日
コメント済み: Manoj 2024 年 4 月 8 日 20:55
The new matlab live script functionality is really awesome, thanks matlab team.
But I observe that my code run considerably slower in live script than in the command line. Just out of curiousity, is this an expected result for a newly created function or there is some way to configure the amount of resource allocation for live script? Thanks.
  5 件のコメント
per isakson
per isakson 2020 年 8 月 7 日
編集済み: per isakson 2020 年 8 月 7 日
Executions of functions are not affected as far as I can see on R2018b.
I copied the code of the comment above by Lukas Müller into an ordinary m-function and a Live Editor mlx-function. tic/toc reports the same elapse time for the two
>> live_function_test
Elapsed time is 0.145617 seconds.
>> live_function_test_LE % Live Editor
Elapsed time is 0.143375 seconds.
P.S. I did a similar comparison with scripts. The m-script finished in about the same time as the functions. I interupted the live-script after a minute.
feynman feynman
feynman feynman 2024 年 2 月 8 日
"
Code in live script run much slow
" is this talking about live script on a local pc (offline) or online? Is running offline still much slower than in m files?

サインインしてコメントする。

採用された回答

Philip
Philip 2020 年 3 月 5 日
編集済み: Philip 2020 年 10 月 14 日
This issue has been partially resolved in R2020b, R2020a, R2019b Update 5, and R2019a Update 8. Most Live scripts with loops now run as fast in the Live Editor as in the Editor or at the command line.
For example, with this change, the approximate execution times of the example from Lukas Müller's post above are:
R2018b: 200.2 s
R2020a: 0.160 s
The code was timed on a Windows 10 system with a 3.6 GHz Intel Xeon W-2133 CPU.
However, as mentioned in the replies below, the performance of rendering graphics within the Live Editor is still a known issue. Specifically, figures containing many graphics objects, such as those often created by basic graphics commands (plot, line, etc.) in tight loops, can be impacted.
For example, this code (based on the post by jdg below), takes 12 seconds to run in the R2020b Live Editor, and 4 seconds in the R2020b Command Window. The code was timed on a Windows 10 system with a 3.6 GHz Intel Xeon W-2133 CPU.
for i = 1:2700
plot(rand, rand, 'ob');
hold on;
end
drawnow
This issue is actively being worked on. As a workaround, code that creates figures with many graphics objects can often be rewritten to reduce the number of graphics objects being created. This change can improve the overall performance of the code. For example, vectorizing the graphics code or using a different graphics command such as “scatter” can reduce the run time of the code in the Live Editor to be almost equal to the run time in the Command Window.
Just as an example, when the code above is updated to gather the data first and only plot the data once, the code now takes 0.5 seconds to run in the R2020b Live Editor, and 0.45 seconds in the R2020b Command Window. The code was timed on a Windows 10 system with a 3.6 GHz Intel Xeon W-2133 CPU.
x = zeros(1, 2700);
y = zeros(1, 2700);
for i = 1:2700
x(i) = rand;
y(i) = rand;
end
scatter(x, y, [], 'ob');
drawnow
If you have any other questions, or other use cases that you would like us to better consider, please feel free to reach out to Technical Support to let us know.
  7 件のコメント
jdg
jdg 2020 年 7 月 10 日
Agree with Mike that things are not better. I am trying out Live Editor in R2020a on a MacBook Pro running macOS Catalina (v10.15.5). After experiencing very sluggish performance I came across this page.
One thing I noticed is that evaluating runtime in the .mlx file with tic/toc is misleading. The blue circle and pause button (both indicating the script is running) are present for much longer than the script is actually running. I had to time it manually to get an accurate estimate.
For example, the code below takes ~2 seconds in an m-file on my machine.
Running it in a .mlx file, I get tic/toc results of ~2.5 seconds. However the script is in executing mode (blue dot) for anywhere from 9 - 30 seconds.
Not looking for suggestions on how to improve the code itself. It's obviously very poorly structured.
@Philip Can you try this code on your machine? I am wondering if it's a Mac issue.
clc
tic
for A_gain = [0.5:0.1:1]
for A_phase = linspace(30,60,5)*pi/180
for B_gain = [0.5:0.1:1]
for B_phase = linspace(80,120,5)*pi/180
A = A_gain*(cos(A_gain) + j*sin(A_gain));
plot(real(A),imag(A),'b.');
B = B_gain*(cos(B_gain) + j*sin(B_gain));
plot(real(B),imag(B),'r.');
c = A+B;
plot(real(c), imag(c),'o');
hold on;
end
end
end
end
toc
Sukrit Ghorai
Sukrit Ghorai 2020 年 9 月 22 日
The lag is so much when we plot on live editor. I think my system is decent to run matlab smoothly but when it comes to live editor , any graphics on live editor such as plotting makes it lag so much. Also output inline mode is gets painful with plots (atleast my computer cant take it :( )

サインインしてコメントする。

その他の回答 (7 件)

Gijs van Oort
Gijs van Oort 2017 年 5 月 31 日
The most annoying I think, is that editing is much slower too. After pressing a key, it takes noticeable time for the character to be shown on the screen. Also walking through the code with the arrow keys and scrolling are really slow. Due to this, I'm now ending up writing my code in a normal .m script and copying it to the .mlx when I'm happy with the results.
  2 件のコメント
Gijs van Oort
Gijs van Oort 2017 年 6 月 28 日
In the LiveScript, I was displaying some very long symbolic equations. I found out that this greatly reduced speed and responsiveness. It was useless anyway; 90% of the displayed equation would be typeset off the screen. After I disabled the displaying of the equations (adding a ; after the assignment), the thing became much faster (but still slower than I would wanted it to be)
Manoj
Manoj 2024 年 4 月 8 日 20:55
I agree with Gijs. Live editor is way slower even on really good spec machines even with R2023b

サインインしてコメントする。


Prannay Jain
Prannay Jain 2016 年 11 月 15 日
Yes, the code runs slower in the live script than in the command line. Currently, there is no way to configure the amount of resource allocation for the live script.
I work for MathWorks and I have forwarded this feedback to the appropriate product team.
  7 件のコメント
Jan Kappen
Jan Kappen 2018 年 5 月 13 日
I have the feeling, being behind a corporate proxy makes things much worse. When I'm at home office without proxy the editor is much quicker. Do you experience the same?
Dom Dwyer
Dom Dwyer 2019 年 1 月 14 日
has this been fixed yet? we can't work with this product currently as it is too slow even on new computers

サインインしてコメントする。


Tom Anderson
Tom Anderson 2017 年 1 月 9 日
編集済み: Tom Anderson 2017 年 1 月 16 日
Please improve this! It's almost 50% slower to run .mlx versus .m...
I ran a code section for a live file using "Run Section" that took 72.971023 seconds. The same code .m file using "Run Section" took 52.701320 seconds. Repeated this test multiple times and .mlx is always a loser.
That's not very good. It's almost a 50% slowdown. It's not as though there's any extra interactivity between the code, either. Just waiting for the results both times, with the GUI locked up.
  1 件のコメント
Tom Anderson
Tom Anderson 2017 年 1 月 16 日
編集済み: Tom Anderson 2017 年 1 月 16 日
Here's a great example I found to run much slower:
tic
for t = 1:1000000
if ~mod(t, 10000), disp(t), end
end
toc
The live code (.mlx): Elapsed time is 487.6064 seconds.
Hit F9 to run (or run as script): Elapsed time is 0.010989 seconds.
50,000 times slower? What gives?

サインインしてコメントする。


Florian Blanchet
Florian Blanchet 2019 年 12 月 11 日
Hi,
Can you remove that feature or at least make it clear that is significantly slower and will reduce editor experience ?
How can you provide a feature that is so unusable without make it explicit it is still experimental ?

Ryan
Ryan 2017 年 3 月 25 日
I will definitely use this feature more when resource allocation improves.

Frieder Wittmann
Frieder Wittmann 2018 年 5 月 28 日
Has this been addressed in R2018a? Didn't see anything in the release notes.
  2 件のコメント
Will Perdikakis
Will Perdikakis 2018 年 8 月 28 日
Nope. Still brutally slow edits and execution.
Frieder Wittmann
Frieder Wittmann 2019 年 5 月 3 日
We're at 2019b now and despite all the advertisement for the future it is still unusable slow :-(

サインインしてコメントする。


Juan José Trujillo
Juan José Trujillo 2018 年 9 月 17 日
Hi,
I do not know what is the motivation for you to use the live scripts. I really find this a cool way of documenting and something which approaches a bit what you can do in Jupyter Notebooks.
In fact, I have been using successfully Jupyter Notebooks with the matlab engine in the last two years to run matlab code. I have worked that way since I have some python background and did not know live scripts until recently. Just lately I have got in touch with matlabs live scripts through a colleague and we have noticed latency which I do not experience through Jupyter Notebooks. I guess the mechanics here are really different and the Notebook approach almost resembles running bare scripts with a bit of overhead on the matlab engine.
Maybe you can give Jupyter Notebook a try and get better performance and with slightly better documentation capabilities with markdown.
  4 件のコメント
Juan José Trujillo
Juan José Trujillo 2018 年 11 月 7 日
Hi Kouichi, sorry for answering that late. I am not really into it. But, As I understand the Matlab engine in Jupyter is just a thin wrapper which passess commands straight to a headless matlab instance. In fact any time a launch a matlab notebook I get fully new instance of Matlab working in the background. So I think you get the best of both worlds, or almost depending on the application. As Frieder says, still there are several applications that you do not have access to from the Jupyter Notebook.
A really cool application of this is for instance if you work on a remote headless system with long lived sessions. You just turn on and off your graphical interface (web browser) locally and connect to the server when you need it, but the Jupyter server and matlab instance stay alive on the remote side. I think you cannot do this kind of things with the matlab IDE, or correct me if I am wrong.
Kouichi C. Nakamura
Kouichi C. Nakamura 2018 年 12 月 18 日
Thank for the information about the backstage of Jupyter. Yeah, that makes sense!

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeIntegration with Online Platforms についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by