Coder Social home page Coder Social logo

OpenMP, OpenACC about gccrs HOT 7 CLOSED

rust-gcc avatar rust-gcc commented on May 22, 2024 1
OpenMP, OpenACC

from gccrs.

Comments (7)

bjorn3 avatar bjorn3 commented on May 22, 2024 2

Is OpenMP actually a good fit for rust? There is already for example rayon, which both supports turning usage of regular iterators into parallel iterators by replacing .iter() with .par_iter() and has a thread pool. The standard library has the Mutex type for synchronization which makes it impossible to forget to lock before accessing data. All these things combined pretty much cover all features of OpenMP, right?

from gccrs.

bjorn3 avatar bjorn3 commented on May 22, 2024 2

From talking to some friends in university in physics they liked openmp only because you could write single threaded code in C then throw in some pragma's and know it did the threading stuff.

Same thing with rayon: In many cases all it takes is to replace iter() with par_iter(). At least if your code is already thread-safe.

from gccrs.

benman1 avatar benman1 commented on May 22, 2024 1

from gccrs.

dkm avatar dkm commented on May 22, 2024 1

I think this can be closed. If we want to continue the discussion, this can be moved in "Discussions" :)

from gccrs.

philberty avatar philberty commented on May 22, 2024

No question is stupid. I had some thoughts on this a few years ago let me see if i can find them on my google drive.

from gccrs.

philberty avatar philberty commented on May 22, 2024

Unfortunately my notes are pretty old on this and i was targeting rust 0.8 then, i think it would muddy the water if i shared them at this stage.

Do you have an idea of what you would like to see for openmp?

I reckon something like pragma omp parallel could be handled with an attribute over a for loop quite easily but i am unsure about how to handle everything else at this stage.

from gccrs.

philberty avatar philberty commented on May 22, 2024

I am looking at it from the perspective if we were to support openmp how could we do it rather than is it a fit for rust. But your not wrong i personally am not a fan of these libraries but they are popular in academia from what i know.

From talking to some friends in university in physics they liked openmp only because you could write single threaded code in C then throw in some pragma's and know it did the threading stuff.

There are simd pragama's as well which is interesting to think about but would need some thought, i mean if you can some C code and change how you write it a bit and use more loops GCC knows to use simd where available. So to create a full openmp implementation is hard to handle all the directives possible and combinations.

https://bisqwit.iki.fi/story/howto/openmp/

from gccrs.

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.