Giter Club home page Giter Club logo

rust-simd-testing's Introduction

Rust Simd Comparison

This is a test repository to compare Rust SIMD options on an array min/max function which is problematic for automatic vectorization.

I see using the portable SIMD methods around 4x faster than the basic implementation.

The intrinsics method is around 8x the basic implementation

Compile and Run

This requires nightly rust to run the portable SIMD methods.

I also run with the rustflags for AVX2 and optimisation level 3 to max everything out on my system!

RUSTFLAGS="-C target-feature=+avx2 -C opt-level=3" cargo bench 

Methods

The basic naive method should be pretty self explainatory. This doesn't vectorise well since we have a 1 element width dependency between iterations.

I attempted a SIMD friendly version which works on 8 elements in parallel at a time which shows a speed up in some cases but was limited.

range_simd uses the portable SIMD methods on nightly. This was a significant improvement over other versions.

Finally range_simd_intrinsics calls directly to the x86 AVX instrinsics. Surprisingly this was double the speed of the range_simd`` method. Looking in Godbolt range_simd` uses some additional calls in min/max which seem unnecessary in our case which is the difference in performance.

rust-simd-testing's People

Contributors

jamesmc86 avatar

Stargazers

 avatar

Watchers

 avatar

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.