-
Notifications
You must be signed in to change notification settings - Fork 19
SIMD spectralnorm #77
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
llogiq
wants to merge
1
commit into
TeXitoi:master
Choose a base branch
from
llogiq:simd-spectralnorm
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,121 +6,132 @@ | |
// contributed by TeXitoi | ||
// modified by Tung Duong | ||
// contributed by Cristi Cobzarenco (@cristicbz) | ||
// contributed by Andre Bogus | ||
|
||
extern crate rayon; | ||
use rayon::prelude::*; | ||
use std::ops::*; | ||
|
||
#[derive(Clone, Copy)] | ||
struct F64x2(f64, f64); | ||
|
||
impl F64x2 { | ||
pub fn splat(x: f64) -> F64x2 { F64x2(x, x) } | ||
pub fn new(a: f64, b: f64) -> F64x2 { F64x2(a, b) } | ||
pub fn write_to_slice_unaligned(self, slice: &mut [f64]) { | ||
slice[0] = self.0; | ||
slice[1] = self.1; | ||
} | ||
pub fn sum(self) -> f64 { | ||
let mut s = [0f64; 2]; | ||
self.write_to_slice_unaligned(&mut s); | ||
s[0] + s[1] | ||
|
||
// This would usually be done within a library. | ||
#[cfg(all(target_arch = "x86_64", target_feature = "sse2"))] | ||
mod simd { | ||
use std::arch::x86_64::*; | ||
use std::ops::*; | ||
|
||
use rayon::prelude::*; | ||
|
||
#[derive(Clone, Copy)] | ||
pub struct F64x2(__m128d); | ||
|
||
impl F64x2 { | ||
pub fn splat(x: f64) -> F64x2 { F64x2(unsafe { _mm_set1_pd(x) }) } | ||
pub fn new(a: f64, b: f64) -> F64x2 { | ||
F64x2(unsafe { _mm_set_pd(b, a) }) | ||
} | ||
pub fn write_to_slice_unaligned(self, slice: &mut [f64]) { | ||
unsafe { _mm_storeu_pd(slice.as_mut_ptr(), self.0) } | ||
} | ||
pub fn hadd(self, rhs: F64x2) -> F64x2 { | ||
F64x2(unsafe { _mm_hadd_pd(self.0, rhs.0) }) | ||
} | ||
pub fn sum(self) -> f64 { | ||
let mut s = [0f64; 2]; | ||
self.write_to_slice_unaligned(&mut s); | ||
s[0] + s[1] | ||
} | ||
} | ||
} | ||
|
||
impl Add for F64x2 { | ||
type Output = Self; | ||
fn add(self, rhs: Self) -> Self { | ||
F64x2(self.0 + rhs.0, self.1 + rhs.1) | ||
impl Add for F64x2 { | ||
type Output = Self; | ||
fn add(self, rhs: Self) -> Self { | ||
F64x2(unsafe { _mm_add_pd(self.0, rhs.0) }) | ||
} | ||
} | ||
} | ||
impl Mul for F64x2 { | ||
type Output = Self; | ||
fn mul(self, rhs: Self) -> Self { | ||
F64x2(self.0 * rhs.0, self.1 * rhs.1) | ||
impl Mul for F64x2 { | ||
type Output = Self; | ||
fn mul(self, rhs: Self) -> Self { | ||
F64x2(unsafe { _mm_mul_pd(self.0, rhs.0) }) | ||
} | ||
} | ||
} | ||
impl Div for F64x2 { | ||
type Output = Self; | ||
fn div(self, rhs: Self) -> Self { | ||
F64x2(self.0 / rhs.0, self.1 / rhs.1) | ||
impl Div for F64x2 { | ||
type Output = Self; | ||
fn div(self, rhs: Self) -> Self { | ||
F64x2(unsafe { _mm_div_pd(self.0, rhs.0) }) | ||
} | ||
} | ||
} | ||
|
||
fn main() { | ||
let n = std::env::args().nth(1) | ||
.and_then(|n| n.parse().ok()) | ||
.unwrap_or(100); | ||
let answer = spectralnorm(n); | ||
println!("{:.9}", answer); | ||
} | ||
pub fn spectralnorm(n: usize) -> f64 { | ||
// Group all vectors in pairs of two for SIMD convenience. | ||
assert!(n % 2 == 0, "only even lengths are accepted"); | ||
let mut u = vec![F64x2::splat(1.0); n / 2]; | ||
let mut v = vec![F64x2::splat(0.0); n / 2]; | ||
let mut tmp = vec![F64x2::splat(0.0); n / 2]; | ||
|
||
fn spectralnorm(n: usize) -> f64 { | ||
// Group all vectors in pairs of two for SIMD convenience. | ||
assert!(n % 2 == 0, "only even lengths are accepted"); | ||
let mut u = vec![F64x2::splat(1.0); n / 2]; | ||
let mut v = vec![F64x2::splat(0.0); n / 2]; | ||
let mut tmp = vec![F64x2::splat(0.0); n / 2]; | ||
for _ in 0..10 { | ||
mult_at_av(&u, &mut v, &mut tmp); | ||
mult_at_av(&v, &mut u, &mut tmp); | ||
} | ||
|
||
for _ in 0..10 { | ||
mult_at_av(&u, &mut v, &mut tmp); | ||
mult_at_av(&v, &mut u, &mut tmp); | ||
(dot(&u, &v) / dot(&v, &v)).sqrt() | ||
} | ||
|
||
(dot(&u, &v) / dot(&v, &v)).sqrt() | ||
} | ||
fn mult_at_av(v: &[F64x2], out: &mut [F64x2], tmp: &mut [F64x2]) { | ||
mult(v, tmp, a); | ||
mult(tmp, out, |i, j| a(j, i)); | ||
} | ||
|
||
fn mult_at_av(v: &[F64x2], out: &mut [F64x2], tmp: &mut [F64x2]) { | ||
mult(v, tmp, a); | ||
mult(tmp, out, |i, j| a(j, i)); | ||
} | ||
fn mult<F>(v: &[F64x2], out: &mut [F64x2], a: F) | ||
where F: Fn([usize; 2], [usize; 2]) -> F64x2 + Sync { | ||
// Parallelize along the output vector, with each pair of slots as a | ||
// parallelism unit. | ||
out.par_iter_mut().enumerate().for_each(|(i, slot)| { | ||
// We're computing everything in chunks of two so the indces of | ||
// slot[0] and slot[1] are 2*i and 2*i + 1. | ||
let i = 2 * i; | ||
let (i0, i1) = ([i; 2], [i + 1; 2]); | ||
|
||
// Each slot in the pair gets its own sum, which is further | ||
// computed in two f64 lanes (which are summed at the end) | ||
let (mut sum0, mut sum1) = (F64x2::splat(0.0), F64x2::splat(0.0)); | ||
for (j, &x) in v.iter().enumerate() { | ||
let j = [2 * j, 2 * j + 1]; | ||
sum0 = sum0 + x / a(i0, j); | ||
sum1 = sum1 + x / a(i1, j); | ||
} | ||
|
||
// Sum the two lanes for each slot. | ||
*slot = F64x2::hadd(sum0, sum1); | ||
}); | ||
} | ||
|
||
fn mult<F>(v: &[F64x2], out: &mut [F64x2], a: F) | ||
where F: Fn([usize; 2], [usize; 2]) -> F64x2 + Sync { | ||
// Parallelize along the output vector, with each pair of slots as a parallelism unit. | ||
out.par_iter_mut().enumerate().for_each(|(i, slot)| { | ||
// We're computing everything in chunks of two so the indces of slot[0] and slot[1] are 2*i | ||
// and 2*i + 1. | ||
let i = 2 * i; | ||
let (i0, i1) = ([i; 2], [i + 1; 2]); | ||
|
||
// Each slot in the pair gets its own sum, which is further computed in two f64 lanes (which | ||
// are summed at the end. | ||
let (mut sum0, mut sum1) = (F64x2::splat(0.0), F64x2::splat(0.0)); | ||
for (j, x) in v.iter().enumerate() { | ||
let j = [2 * j, 2 * j + 1]; | ||
div_and_add(*x, a(i0, j), a(i1, j), &mut sum0, &mut sum1); | ||
} | ||
fn a(i: [usize; 2], j: [usize; 2]) -> F64x2 { | ||
F64x2::new(((i[0] + j[0]) * (i[0] + j[0] + 1) / 2 + i[0] + 1) as f64, | ||
((i[1] + j[1]) * (i[1] + j[1] + 1) / 2 + i[1] + 1) as f64) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. No SIMD here? |
||
} | ||
|
||
// Sum the two lanes for each slot. | ||
*slot = F64x2::new(sum0.sum(), sum1.sum()); | ||
}); | ||
} | ||
fn dot(v: &[F64x2], u: &[F64x2]) -> f64 { | ||
// Vectorised form of dot product: (1) compute dot across two lanes. | ||
let r = u.iter() | ||
.zip(v) | ||
.map(|(&x, &y)| x * y) | ||
.fold(F64x2::splat(0.0), |s, x| s + x); | ||
|
||
fn a(i: [usize; 2], j: [usize; 2]) -> F64x2 { | ||
F64x2::new(((i[0] + j[0]) * (i[0] + j[0] + 1) / 2 + i[0] + 1) as f64, | ||
((i[1] + j[1]) * (i[1] + j[1] + 1) / 2 + i[1] + 1) as f64) | ||
} | ||
// (2) sum the two lanes. | ||
r.sum() | ||
} | ||
|
||
fn dot(v: &[F64x2], u: &[F64x2]) -> f64 { | ||
// Vectorised form of dot product: (1) compute dot across two lanes. | ||
let r = u.iter() | ||
.zip(v) | ||
.map(|(&x, &y)| x * y) | ||
.fold(F64x2::splat(0.0), |s, x| s + x); | ||
} | ||
|
||
// (2) sum the two lanes. | ||
r.sum() | ||
#[cfg(not(all(target_arch = "x86_64", target_feature = "sse2")))] | ||
mod simd { | ||
pub fn spectralnorm(n: usize) -> f64 { | ||
panic!("This only works with SSE2"); | ||
} | ||
} | ||
|
||
// Hint that this function should not be inlined. Keep the parallelised code tight, and vectorize | ||
// better. | ||
#[inline(never)] | ||
fn div_and_add(x: F64x2, | ||
a0: F64x2, | ||
a1: F64x2, | ||
s0: &mut F64x2, | ||
s1: &mut F64x2) { | ||
*s0 = *s0 + x / a0; | ||
*s1 = *s1 + x / a1; | ||
// now here's the actual program | ||
fn main() { | ||
let n = std::env::args().nth(1) | ||
.and_then(|n| n.parse().ok()) | ||
.unwrap_or(100); | ||
let answer = simd::spectralnorm(n); | ||
println!("{:.9}", answer); | ||
} |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You'll ask for this modification?