A "Hands-on" Introduction to OpenMP (Part 1) | Tim Mattson, Intel

Поделиться
HTML-код
  • Опубликовано: 14 дек 2024

Комментарии • 5

  • @umittas20000
    @umittas20000 3 года назад +1

    Hey Tim, you're awesome! Thank you. 5 years later from the video, I found it and learnt how important is shared variable in Parallel programming.

  • @jundachen4856
    @jundachen4856 5 лет назад

    This is an absolutely excellent presentation of OpenMP intro.

  • @tuckerhartland1001
    @tuckerhartland1001 5 лет назад

    Interesting, when I ran the parallel helloworld code I did get the following output
    hello(0) world(0)
    hello(4) world(4)
    hello(2) world(2)
    ....
    I did not see interleaving. I had to put a time delay (time based on thread ID) in between the hello and world print statements to see the interleaving and then be certain that the threads were not being run in serial.

  • @bocckoka
    @bocckoka 6 лет назад

    difficult to write code that is race free? dude, Rust 1.0 was already out at this time.