フィルターのクリア

Why does it take so long for Application Compiled exe to execute?

35 ビュー (過去 30 日間)
Kristoffer Walker
Kristoffer Walker 2019 年 5 月 22 日
コメント済み: Kristoffer Walker 2019 年 5 月 23 日
Folks,
I have a Matlab GUI made with GUIDE that takes ~50 times longer to launch when I run the *.exe file directly from the "for_redistribution_files_only" directory after compiling it relative to the amount of time it takes me to run the same original .m Application in a full Matlab console window. Why does it take so long to execute? It takes ~50 times longer only the first time I run it after logging into the Windows 10 console (and its not being run while other startup processes are happening). Then if I close it and run it again, it takes only 5 times longer. Still way way slower than launching from Matlab console. I'm running a 4-core laptop that gets great marks from Matlab's bench (the 3rd fastest computer just faster than Xeon X5650 @ 2.67 GHz). Does it make a difference from a launching speed perspective if I install it in registry using the Installer.exe App generated from Application Compiler? The reason I default to using the App *.exe that comes directly out of Application Compiler is because to run the Installer.exe requires admin privledges, which is something that I do not have and difficult to obtain.
Thanks,
Kris

採用された回答

Walter Roberson
Walter Roberson 2019 年 5 月 23 日
The first time you run, it has to break out the CTF archive as well as everything else.
Each time you run it has to check the md5 or equivalent to the archives to validate them, and then start executing.
The execution process involves the same amount of initialization as starting up matlab itself.
MATLAB Compiler does not compile to machine code: it just preparses the code the same way that is done the first time in a session that matlab encounters the file. The actual execution of the parsed code is by the same execution engine used by interactive matlab.
Do not use MATLAB Compiler to speed up execution: the speed will be the same.
If you want to speed up execution of code you should use MATLAB Coder
If you have a compiled execute and you need faster startup then have a look at Production Server

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeC Shared Library Integration についてさらに検索

製品


リリース

R2017a

Community Treasure Hunt

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

Start Hunting!

Translated by