lkml.org 
[lkml]   [2002]   [Oct]   [25]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
From
SubjectRe: [BENCHMARK] AIM Independent Resource Benchmark results for kernel-2.5.44
Date
From: "Siva Koti Reddy" <siva.kotireddy@wipro.com>
> 39 new_raph Unable to solve equation in 100 tries. P =
1.5708, P0
> = 1.5708, delta = 6.12574e-17
> new_raph: Success
> *** Failed to execute new_raph ***

The AIM7/AIM9 new_raph is broken code. The convergence loop termination
conditional looks something like:
if (delta == 0) break;
for a type "double" delta. You ought to change that to be something
like:
if (delta <= 0.00000001L) break;

--
John Hawkes

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/

\
 
 \ /
  Last update: 2005-03-22 13:30    [W:0.036 / U:1.060 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site