Git Product home page Git Product logo

Comments (3)

oliverhu avatar oliverhu commented on July 18, 2024

nvm, it is faster...there was an error in my benchmark code.

from rayon.

cuviper avatar cuviper commented on July 18, 2024

You might also want to try it with parallelism only on the outer loop, and leave it sequential inside. There's no inherent problem with nesting parallelism in rayon, but you're unlikely to benefit when the workload is already well balanced, and it will add some overhead to split the inner loop for nothing.

from rayon.

oliverhu avatar oliverhu commented on July 18, 2024

@cuviper yeah, you're right. After removing the inner parallelism, it is actually 2x faster tho...

fn matmul(w: &Vec<Vec<f32>>, x: &Vec<f32>) -> Vec<f32> {
    w.into_par_iter()
     .map(
        |n| {
            n.iter().enumerate().map(|(id, j)| {
            j * x[id] }
        ).sum()
            // (n, x).into_par_iter().map(|(x, y)| x * y).sum()
        }
    ).collect()
}
fn matmul_2(w: &Vec<Vec<f32>>, x: &Vec<f32>) -> Vec<f32> {
    w.into_par_iter()
     .map(
        |n| {
            (n, x).into_par_iter().map(|(x, y)| x * y).sum()
        }
    ).collect()
}

fn matmul_3(w: &Vec<Vec<f32>>, x: &Vec<f32>) -> Vec<f32> {
    w.into_par_iter()
     .map(
        |n| {
            n.into_par_iter().enumerate().map(|(id, j)| {
            j * x[id] }
        ).sum()
        }
    ).collect()
}
fn matmul_default(w: Vec<Vec<f32>>, x: Vec<f32>) -> Vec<f32> {
    w.iter()
     .map(
        |n| {
            n.iter().zip(x.iter()).map(|(x, y)|
                x * y
            ).sum()
        }).collect()
}

Benchmark (1000, 1000) @ (1000, 1) ->

Time elapsed in matmul is: 3.781083ms
Time elapsed in matmul2 is: 10.111667ms
Time elapsed in matmul3 is: 7.760333ms
Time elapsed in matmul_default is: 15.889958ms

from rayon.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.