|
|
| File Information |
| Description |
Nowadays, Matlab is multi-threaded but most MEX files are still single threaded. This is an simple example of c-code for MEX file multi-threading.
The mex function "y = square(x)" is written in c-code and starts 2 worker threads. The first worker thread will square all values on the even input indexes x[0] x[2] .. x[n], and the second worker thread all odd indexes x[1] x[3] .. x[n]. Also demonstrates thread safety by using Mutex to lock percentage variable.
example,
mex square.c -v;
y = square([1 2 3 4 5 6 7 8 9])
note:
The function uses <windows.h> (function sleep ) and <process.h> ( function _beginthreadex ) which are included with visual studio and some other compilers.
This example is tested with Windows Vista 64 and Visual Studio 2008 compiler, and with (default) LCC compiler and Vista 32. |
| MATLAB release |
MATLAB 7.6 (R2008a)
|
| Other requirements |
Windows OS |
|
Tags for This File
|
| Everyone's Tags |
|
| Tags I've Applied |
|
| Add New Tags |
Please login to tag files.
|
| Comments and Ratings (4) |
| 26 Aug 2008 |
Nick Clark
|
|
|
| 29 Aug 2008 |
A B
|
|
|
| 16 Sep 2009 |
Jveer
|
|
|
| 16 Apr 2010 |
Ad Client
|
|
|
| Updates |
| 28 Aug 2008 |
Added Mutex example and replaced function _beginthread by _beginthreadex, which allows WaitForSingleObject in Matlab |
| 02 Sep 2008 |
Now also works with the Matlab LCC compiler. |
|
Contact us at files@mathworks.com