Changes between Version 20 and Version 21 of ValidationSimple
- Timestamp:
- Jun 8, 2014, 7:20:37 PM (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
ValidationSimple
v20 v21 31 31 wu.lookup_id(result->workunitid); 32 32 }}} 33 34 == Runtime outliers == 35 36 BOINC's mechanisms for estimating job runtimes are based on the assumption 37 that a job's computation is roughly proportional to its FLOPS estimate (workunit.rsc_fpops_est). 38 If there are exceptions to this (e.g. jobs that exit immediately because of unusual input data) 39 these mechanisms will work better if you label them as such. 40 To do this, set 41 {{{ 42 result.runtime_outlier = true; 43 }}} 44 in init_result() for these results. 45 33 46 == Example == 34 47 Here's an example in which the output file contains an integer and a double. Two results are considered equivalent if the integer is equal and the doubles differ by no more than 0.01.