1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
|
<html>
<head>
<title>Blitz++ User's Guide </title>
</head>
<body fgcolor="#27408B" bgcolor="#FFFAF0" >
<hr>
<ul>
<li> <a href="blitz09.html">Next chapter</a>
<li> <a href="blitz07.html">Previous chapter</a>
<li> <a href="blitz.html">Table of contents</a>
</ul>
<hr>
<a name="l117"></a>
<h1>Chapter 8: Parallel Computing with Blitz++</h1>
<a name="parallel"></a>
While Blitz++ can be used for parallel computing, it was not designed
primarily for this purpose. For this reason, you may want to investigate
some other available libraries, such as POOMA, before choosing to
implement a parallel code using Blitz++.
<p><!-- BZINDEX parallel computing --><a name="index00425">
<p><br><br><br><table width="100%" border="0" cellpadding=10 align=center><tr><td align="left" bgcolor="#0b6698"><font color="#ffffff" face="Helvetica" size=+5>8.1: Blitz++ and thread safety</font></td></tr></table><br><a name="l118"></a>
<p><!-- BZINDEX thread safety --><a name="index00426">
<p>To enable thread-safety in Blitz++, you need to do one of these things:
<p><!-- BZINDEX BZ_THREADSAFE --><a name="index00427">
<!-- BZINDEX BZ_MUTEX_... --><a name="index00428">
<p><dl>
<p><!-- BZINDEX REENTRANT --><a name="index00429">
<li > Compile with <code>gcc -pthread</code>, or <code>CC -mt</code> under Solaris.
(These options define <code>_REENTRANT</code>, which tells Blitz++ to generate
thread-safe code).
<li > Compile with <code>-DBZ_THREADSAFE</code>, or <code>#define BZ_THREADSAFE</code>
before including any Blitz++ headers.
<p></dl>
<p>In threadsafe mode, Blitz++ array reference counts are safeguarded
by a mutex. By default, pthread mutexes are used.
If you would prefer a different mutex implementation, add the
appropriate <code>BZ_MUTEX</code> macros to <code><blitz/blitz.h></code> and send them
to <code>blitz-dev@oonumerics.org</code> for incorporation.
<p><!-- BZINDEX locking (thread safety) --><a name="index00430">
<p>Blitz++ does not do locking for every array element access; this would
result in terrible performance. It is the job of the library
user to ensure that appropriate synchronization is used.
<p>
<p>
<hr>
<ul>
<li> <a href="blitz09.html">Next chapter</a>
<li> <a href="blitz07.html">Previous chapter</a>
<li> <a href="blitz.html">Table of contents</a>
</ul>
<hr>
</body>
</html>
|