rust/src/test/bench/shootout-spectralnorm.rs

66 lines
1.7 KiB
Rust
Raw Normal View History

// Copyright 2012-2013 The Rust Project Developers. See the COPYRIGHT
// file at the top-level directory of this distribution and at
// http://rust-lang.org/COPYRIGHT.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.
use std::from_str::FromStr;
use std::os;
use std::vec;
#[inline]
fn A(i: i32, j: i32) -> i32 {
(i+j) * (i+j+1) / 2 + i + 1
}
2012-02-08 03:05:53 -06:00
fn dot(v: &[f64], u: &[f64]) -> f64 {
let mut sum = 0.0;
for v.iter().enumerate().advance |(i, &v_i)| {
sum += v_i * u[i];
}
sum
2012-02-08 03:05:53 -06:00
}
fn mult_Av(v: &mut [f64], out: &mut [f64]) {
for out.mut_iter().enumerate().advance |(i, out_i)| {
let mut sum = 0.0;
for v.mut_iter().enumerate().advance |(j, &v_j)| {
sum += v_j / (A(i as i32, j as i32) as f64);
2012-02-08 03:05:53 -06:00
}
*out_i = sum;
2012-02-08 03:05:53 -06:00
}
}
fn mult_Atv(v: &mut [f64], out: &mut [f64]) {
for out.mut_iter().enumerate().advance |(i, out_i)| {
let mut sum = 0.0;
for v.mut_iter().enumerate().advance |(j, &v_j)| {
sum += v_j / (A(j as i32, i as i32) as f64);
2012-02-08 03:05:53 -06:00
}
*out_i = sum;
2012-02-08 03:05:53 -06:00
}
}
fn mult_AtAv(v: &mut [f64], out: &mut [f64], tmp: &mut [f64]) {
mult_Av(v, tmp);
mult_Atv(tmp, out);
2012-02-08 03:05:53 -06:00
}
#[fixed_stack_segment]
fn main() {
let n: uint = FromStr::from_str(os::args()[1]).get();
let mut u = vec::from_elem(n, 1f64);
let mut v = u.clone();
let mut tmp = u.clone();
for 8.times {
mult_AtAv(u, v, tmp);
mult_AtAv(v, u, tmp);
2012-02-08 03:05:53 -06:00
}
printfln!("%.9f", (dot(u,v) / dot(v,v)).sqrt() as float);
2012-02-08 03:05:53 -06:00
}