sharedmatrix

SHAREDMATRIX Allows any Matlab object to be shared between Matlab sessions (w/o using file I/O).
ダウンロード: 4.4K
更新 2011/6/8

ライセンスの表示

SHAREDMATRIX Allows any Matlab object (e.g., struct, nd-cell, nd-matrix, sparse matrix) to be shared between multiple Matlab sessions without resorting to file I/O. The Matlab sessions must have access to the same shared memory resources, i.e., the processes are on the same physical system. This program uses shared memory functions specified by POSIX and in doing so avoids disk I/O for sharing. The program should work on any Linux variant but was only tested on Ubuntu.

*UPDATE: Thanks to contributor Andrew Smith, we now support Windows through the Boost InterProcess library. The windows version has not been tested by the first author.

% For example, assuming you have data X:

shmkey=12345;
sharedmatrix('clone',shmkey,X);
clear X;
spmd(8)
X=sharedmatrix('attach',shmkey);
% do something with X
sharedmatrix('detach',shmkey,X);
end
sharedmatrix('free',shmkey);

For complete description please see my blog post:
http://smlv.cc.gatech.edu/2010/08/27/shared-memory-in-matlab/

引用

Joshua Dillon (2024). sharedmatrix (https://www.mathworks.com/matlabcentral/fileexchange/28572-sharedmatrix), MATLAB Central File Exchange. 取得済み .

MATLAB リリースの互換性
作成: R2010b
すべてのリリースと互換性あり
プラットフォームの互換性
Windows macOS Linux
カテゴリ
Help Center および MATLAB AnswersApp Building についてさらに検索
謝辞

ヒントを得たファイル: InplaceArray: a semi-pointer package for Matlab

ヒントを与えたファイル: guesemha, semaphore, DM Utils (data mining utils), MxArrayDefinition

Community Treasure Hunt

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

Start Hunting!

sharedmatrix/

sharedmatrix/sharedmatrix_windows_by_andrew_smith/

バージョン 公開済み リリース ノート
1.17.0.0

No change to code. Updated icon only.

1.14.0.0

- Sharing of scalars is now explicitly not supported (Alen Wu).
- Windows version clone open_or_create (Guy Katz).

1.12.0.0

Fixed regression bug: incorrect calculation of sparse matrix size (nzmax).

1.11.0.0

Thanks to contributor Andrew Smith, now support structs.

Various other minor bug fixes.

1.6.0.0

Added ipcs interface: whosshared.m

1.5.0.0

Corrected mishandling of sparse logical matrices.

1.4.0.0

updated description

1.3.0.0

updated description

1.2.0.0

1) fixed empty member bug
2) fixed install_sharedmatrix.m
3) updated/clarified documentation

1.0.0.0