4 5 3 Relaxed Consistency Models

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

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

  • @nullbeyondo
    @nullbeyondo 2 месяца назад

    Perfect for a Networking scheduler... if you're counting the load on each thread to distribute newer requests to the less loaded threads, then you really don't need an atomic variable that wastes CPU cycles by waiting for the threads to be synchronized, you could just read, and even if the scheduler reads an old value that was updated 10 seconds ago by the thread, who cares? It would work perfectly for distrubiting the load. I exaggerated of course, but that'd most likely be a few nanoseconds delay in CPU times between threads, so even more perfect. This relaxed consistency model is preferred in this case over the atomic models that require consistency. That also works because you there would only be one thread always writing to the variable, while the scheduler merely reads it, so no undefined behavior.

  • @adarsh5870
    @adarsh5870 2 года назад +2

    hi Professor can you please share some book that has PSO (partial store order) its intitial configurations and transition system.

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

    Thank you!!!!! Your videos helped me a lot for my exams!!!!!!!!!!!!!!!!!!

  • @enesbilgin7157
    @enesbilgin7157 4 года назад +9

    this video is same as the previous one

    • @tusharparashar1879
      @tusharparashar1879 4 года назад +4

      yes because previous video is wrongly uploaded and video of sequential consistency model is missing

  • @list8766
    @list8766 4 года назад

    Thank you!

  • @uiuxshoaib
    @uiuxshoaib 4 года назад

    Thank you :)