~ubuntu-branches/ubuntu/lucid/boinc/lucid

« back to all changes in this revision

Viewing changes to doc/homogeneous_redundancy.php

  • Committer: Bazaar Package Importer
  • Author(s): Frank S. Thomas, Frank S. Thomas
  • Date: 2008-05-31 08:02:47 UTC
  • mfrom: (1.1.8 upstream)
  • Revision ID: james.westby@ubuntu.com-20080531080247-4ce890lp2rc768cr
Tags: 6.2.7-1
[ Frank S. Thomas ]
* New upstream release.
  - BOINC Manager: Redraw disk usage charts immediately after connecting to
    a (different) client. (closes: 463823)
* debian/copyright:
  - Added the instructions from debian/README.Debian-source about how
    repackaged BOINC tarballs can be reproduced because DevRef now
    recommends to put this here instead of in the afore-mentioned file.
  - Updated for the new release.
* Removed the obsolete debian/README.Debian-source.
* For consistency upstream renamed the core client and the command tool
  ("boinc_client" to "boinc" and "boinc_cmd" to "boinccmd"). Done the same
  in all packages and created symlinks with the old names for the binaries
  and man pages. Also added an entry in debian/boinc-client.NEWS explaining
  this change.
* debian/rules: Do not list Makefile.ins in the clean target individually,
  just remove all that can be found.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<?php
2
 
require_once("docutil.php");
3
 
page_head("Dealing with numerical discrepancies");
4
 
echo"
5
 
Most numerical applications produce different outcomes 
6
 
for a given workunit depending on the machine 
7
 
architecture, operating system, compiler, and compiler flags.
8
 
For some applications these discrepancies produce
9
 
only small differences in the final output,
10
 
and results can be validated using a 'fuzzy comparison' function
11
 
that allows for deviations of a few percent.
12
 
<p>
13
 
Other applications are 'divergent' in the sense that small
14
 
numerical differences lead to unpredictably large differences
15
 
in the final output.
16
 
For such applications it may be difficult to distinguish
17
 
between results that are correct but differ because
18
 
of numerical discrepancies, and results that are erroneous.
19
 
The 'fuzzy comparison' approach does not work for such applications.
20
 
 
21
 
<h2>Eliminating discrepancies</h2>
22
 
<p>
23
 
One approach is to eliminate numerical discrepancies.
24
 
Some notes on how to do this for Fortran programs are given in a paper,
25
 
<a href=MOM1MP01.pdf>Massive Tracking on Heterogeneous Platforms</a>
26
 
and in an earlier <a href=fortran_numerics.txt>text document</a>,
27
 
both courtesy of Eric McIntosh from CERN.
28
 
 
29
 
<h2>Homogeneous redundancy</h2>
30
 
<p>
31
 
BOINC provides a feature called <b>homogeneous redundancy</b>
32
 
to handle divergent applications.
33
 
You can enable it for a project by including the line
34
 
<pre>
35
 
&lt;homogeneous_redundancy/&gt;
36
 
</pre>
37
 
in the <a href=configuration.php>config.xml</a> file.
38
 
 
39
 
<p>
40
 
Alternatively, you can enable it selectively for a single
41
 
application by setting the
42
 
<code>homogeneous_redundancy</code> field in its database record.
43
 
<p>
44
 
When this feature is enabled,
45
 
the BOINC scheduler will send results for a given workunit
46
 
only to hosts with the same operation system name and CPU vendor
47
 
(i.e., the os_name and p_vendor fields of the host description).
48
 
For example: if a result has been sent to a host of type
49
 
(Windows XP, Intel), then other results of that workunit will
50
 
only be sent to hosts of type (Windows XP, Intel).
51
 
 
52
 
<p>
53
 
If homogeneous redundancy is enabled,
54
 
it may be possible to use strict equality to compare redundant results.
55
 
 
56
 
";
57
 
page_tail();
58
 
?>