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

12 次查看(过去 30 天)
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

回答(1 个)

Harsh
Harsh 2017-2-14
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 个评论

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Parallel Computing Fundamentals 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by