MATLAB not using the RAM entirely. Is it because I have an academic license?

257 views (last 30 days)
I have a big workstation with 256 GB RAM and 32 cores. The intention to buy this was to speed up the simulations. But, I just figured out that MATLAB doesn't use any memory more than 33% (75 GB). The simulations take a really long time and sometimes the simulations fail to converge to a solution. How can I force MATLAB to use the entre 256 GB RAM? Almost 66% of the memory is unused.
In other computers, I see that memory usage keeps fluctuation overtime when simulations are running. But those are low-end general desktops with 16 and 32 GB RAM,
Why is that not the case with the workstation that I mentioned? I monitored it for a really long time, it doesn't move even a single % more than 33% in a single MATLAB window. In other words, MATLAB is underutilizing the resources or is a bottleneck in which case, I could even work with a 128 GB workstation. I don't really know how to solve this problem. I tried using memory() in between my simulations, it shows that memory available = 256 GB and memory used by MATLAB = 75 GB. Any suggestions would be really helpful. Thanks in advance.
By any chance, can I define that MATLAB can use x number of cores or y RAM of memory in my case? I have heard of the former, but I haven't tried it yet. I have not found any resources for the latter.
30
  2 Comments
Jay Vaidya
Jay Vaidya on 21 Oct 2020
Thanks for replying Walter. This is how the panel looks in the preferences. Is there anything I can change to make things better?

Sign in to comment.

Accepted Answer

Walter Roberson
Walter Roberson on 21 Oct 2020
In all 64 bit versions of MATLAB, the built-in limits are:
  • no array dimension may exceed 2^48-1, even if the array is empty. This is a MATLAB limitation.
  • no array may occupy more than 2^48-1 bytes. This is a MATLAB limitation that builds upon a hardware limitation -- namely that no publicly known x64 architecture has more than 48 address lines connected
  • the total amount of memory allocated to the process may not exceed 2^48-1 bytes. At the moment I am not sure if this includes virtual memory that is allocated to shared DLL, but I suspect it does. This is a MATLAB limitation that builds upon a hardware limitation -- namely that no publicly known x64 architecture has more than 48 address lines connected. However the specific question of whether the allocated memory includes shared DLLs or not is an operating system question (possibly combined with hardware) as operating systems have access to memory with the top address bit set, able to use hardware virtual memory mapping to map it to other locations
  • no more than 8192 gigabytes of memory may be reserved for Java use. This a MATLAB limitation if I understand correctly -- though it is rooted in historical limitations on JVM that have since been removed for 64 bit JVM
  • Student licenses and Home licenses are restricted to 1000 virtual blocks in Simulink. This is purely a MATLAB marketing limitation
  • There is a Preference (that you already found) that can be set to limit any one array to a fraction of the maximum memory. Besides helping to "play nice" on a shared machine, this can help prevent MATLAB from swapping to disk when large arrays are used. If this limit is exceeded, an error message is generated
  • Only one GPU may be used at a time on any one process. I do not know if this is a hardware limitation or a MATLAB limitation or a driver limitation
Other than that, I cannot think of any limitation.
In particular, there is no limitation to 75 gigabytes.
However... MATLAB only allocates as much memory as is required by the calculations. Allocating more memory would not speed up the calculation..
For some kinds of matrix calculations, MATLAB automatically splits the calculation between all available cores. Unless very large arrays are being used, it is not uncommon for there to be not much performance improvement beyond roughly 8 cores, due to the time required to distribute the task and collect the results. If MATLAB is automatically splitting tasks between cores much of the time, then you would expect to see a number of cores busy for MATLAB in your task manager.
Mathworks offers a Parallel Computing Toolbox, which allows you to split a task between cores. The most common experience when first using the toolbox is that it makes programs take longer -- starting the processes and transferring data to them and retrieving the data takes a fair bit of overhead, so to get any value from this approach, you need to have well separated large tasks... especially if the amount of work to be done is high compared to the amount of data to be transferred.
The automatic spliting of array calculations between available cores also factors into using Parallel Computing Toolbox: the default number of cores allocated per worker is 1, so matrix calculations that used to be split between available cores will instead run on one core, making them take longer.
I mentioned above that the performance improvement for automatic splitting is often not much beyond 8 cores. That suggests that for some situations, an effective strategy is to split the work between 4 workers (each allocated 8 cores) or 5 workers (each allocated 6 cores) or 6 workers (each allocated 5 cores) or 8 workers (each allocated 4 cores.) The more workers you allocate, the more simultaneous progress you can make on tasks that cannot easily be done in parallel. There are some tasks that are highly iterative that cannot be vectorized, so sometimes allocating many workers each with only one core is worth doing... but more of the time, splitting between workers that each have access to multiple cores turns out to be more productive.
But all of this parallel work depends upon there being low communication between workers. If you have goals that can be met by processing large blocks independently and then stitching the results together at the seems then SPMD might be the best approach.
  2 Comments
Bruno Luong
Bruno Luong on 21 Oct 2020
Edited: Bruno Luong on 21 Oct 2020
"no more than 8192 gigabytes of memory may be reserved for Java use. This a MATLAB limitation if I understand correctly -- though it is rooted in historical limitations on JVM that have since been removed for 64 bit JVM"
Are you talking about Java Heap Memory "the heap size determines how much memory is available for Java objects". The Preferences GUI allows user to set up to 4 Gb, that's all.
I still wonder how any guideline to set up this value, there is not much in TMW doc, beside if you get an error increase it (!), yeah not very helpfup. Does app-designer still requires java heap memory? How the preference is connected to compiled stand alone apps? If not how to setup it by stand-alone apps?
I still get errors now and then and not sure why because il occurs somewhat arbitrary.
Walter Roberson
Walter Roberson on 7 Jun 2021
I do not know if App Designer uses Java at all.
I should have said 8192 megabytes for Java, not 8192 gigabytes.
Ah, that's odd, my Virtual Machine is showing a limit of 2042 megabytes. I wonder if the limit is based on 1/4 of RAM? Ah-ha! Doubling the allocated virtual memory to 16 gigabytes raised the limit to 4090 megabytes, so the limit does appear to be 1/4 of memory rather than a fixed limit ! (The virtual machine needs some of the memory for graphics, which is why you do not see 2048 and 4096.)

Sign in to comment.

More Answers (0)

Categories

Find more on Startup and Shutdown in Help Center and File Exchange

Products


Release

R2020b

Community Treasure Hunt

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

Start Hunting!