Shared Memory in parfor - Parallel Computing Toolbox - sharedmatrix does not work in 2016b

20 visualizaciones (últimos 30 días)
Hi,
I'm trying to optimize a simulation that uses a large array in a parfor loop which is used as read-only.
The data is copied to each worker although it is not changed by the workers. This is a huge waste of memory...
There is a nice mex function wrapping shared memory from Boost: https://de.mathworks.com/matlabcentral/fileexchange/28572-sharedmatrix
However, this does not work anymore in Matlab 2016b.
Is there another possibility to share memory between workers? Or is there an easy fix to the sharedmatrix mex function?
(The problem with sharedmatrix seems to be that 'detach' does not work anymore and MATLAB crashes when attempting to delete the temporary pointer to the shared memory)
Thanks,
Matthias

Respuestas (1)

Harsh
Harsh el 14 de Feb. de 2017
Hello,
Parallel Computing Toolbox” follows a distributed memory model. Hence the workers won’t have access to the data present on the client machine. Instead, the client copies the data, in this case the large array to each worker when you use the “parfor” construct.
In the event that the workers are each working on different chunks of the large array, you can potentially look at using (co)distributed arrays as shown in the following links:
  3 comentarios

Iniciar sesión para comentar.

Categorías

Más información sobre Parallel Computing Fundamentals en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by