How to make Matlab compiler work faster?

How to make Matlab compiler work faster? It takes a lot of time to adopt a reasonable program.

I am currently using Microsoft Visual C ++ 2008 Service Pack 1 (SP1) in c: \ Program Files (x86) \ Microsoft Visual Studio 9.0 in mbuild -setup

+6
source share
2 answers

Here's one piece of advice - most of the time spent by the MATLAB compiler is in the dependency check for the code you are compiling. If there are a large number of toolkits along the way, this can be time consuming. You can change the list of toolboxes on the way to the "Settings" menu in deploytool . Make sure that only the toolbars that your code uses are selected.

It may take ages, but it can lead to less age.

+10
source

The usual methods for compiling something faster are usually quite cost-effective:

  • Faster processor
  • Additional memory
  • SSD

I do not think that the parallel computing package will help you, because the MATLAB compiler is not listed as the built-in support for the website, even though the products are encoder.

-2
source

Source: https://habr.com/ru/post/904066/


All Articles