Real-time Programming with the C++ Standard Library - Timur Doumler - CppCon 2021

Sdílet
Vložit
  • čas přidán 26. 05. 2024
  • cppcon.org/
    github.com/CppCon/CppCon2021
    ---
    In applications such as video games and audio processing, a program has to not only produce the correct result, but to do so reliably in a deterministic amount of time. The code needs to satisfy real-time constraints, complicated by the fact that it will typically run on a non-real-time OS kernel. Writing code for such constraints significantly differs from writing code that maximises for bandwidth or overall performance.
    How well suitable is the C++ standard library for such scenarios? In this talk, we will go through many of its facilities in detail. Which are safe to use in (near-)real-time contexts? Which should be avoided, and why? We will discuss well-established utilities and useful patterns as well as some less commonly known details.
    This talk is a different kind of tour through the standard library - and afterwards, you will be more confident in using it!
    ---
    Timur Doumler is the Developer Advocate for C++ at JetBrains. As a developer, he specialises in audio and music software. Timur is an active member of the ISO C++ standard committee, co-founder of the music tech startup Cradle, and conference chair of the Audio Developer Conference (ADC). He is passionate about building inclusive communities, clean code, good tools, low latency, and the evolution of the C++ language.
    ---
    Videos Filmed & Edited by Bash Films: www.BashFilms.com
    CZcams Channel Managed by Digital Medium Ltd events.digital-medium.co.uk
    *--*
  • Věda a technologie

Komentáře • 64

  • @dominichofer136
    @dominichofer136 Před 2 lety +14

    Fantastic talk! The audio quality is great. Your talk has a constant level of abstraction, this makes it easy to follow and absorb. You mention where there are rabbit holes and give a summary of your findings, that's so efficient. Your slideware greatly supports your narrative, is short and precise. The overall narrative visits topic after topic, giving an overview, some examples, some details, some outlook (like inpace_function, static_vector) and mentions the standard or papers where useful. One of the best talks of CppCon 2021! I have nothing to do with audio but I enjoyed it beginning to end.

  • @teddyzhai4442
    @teddyzhai4442 Před 2 lety +17

    by definition, real-time does not equal to low-latency, although most of time people tend to use interchangeably. Real-time is a deterministic characteristic.

    • @lepidoptera9337
      @lepidoptera9337 Před rokem +4

      I agree. Hard real-time is "guaranteed latency". No matter what happens, the CPU has to have a reliable output after a defined amount of time.

    • @NabekenProG87
      @NabekenProG87 Před 5 měsíci +1

      7:35

  • @nickm8134
    @nickm8134 Před 2 lety +9

    This was an excellent talk - this topic is very rarely covered at this depth - extremely useful for my interest in C++ audio DSP on ARM - thank you.

    • @CppCon
      @CppCon  Před 2 lety +1

      Glad it was helpful!

  • @batner
    @batner Před rokem +2

    I love the way Timur's lectures change with the years.

  • @LDdrums20
    @LDdrums20 Před 2 lety +18

    Excellent talk! I would die to have a standard implementation of a lock free queue! It's time already!

    • @sergeykolesnik1171
      @sergeykolesnik1171 Před rokem +1

      There's a chance you know. I mean a chance of dying of old age

  • @thebasicmaterialsproject1892

    great lecture especially if your into ableton vst plug ins like izotope or virtual instruments steinberg etc

  • @uran0
    @uran0 Před 2 lety +2

    Great talk. This topic was definitely poorly covered in the past. Thank you.

  • @tomkirbygreen
    @tomkirbygreen Před rokem +2

    This is a fabulous presentation, thank you ever so much Timur.

  • @SurfinScientist
    @SurfinScientist Před rokem +1

    I learned a lot from this talk. Excellent presentation!

  • @cmdlp4178
    @cmdlp4178 Před 2 lety +3

    I suggest an additional (optional) parameter to the attribute:
    [[realtime_safe(n*m)]] void do_sth(int* array2d, int n, int m);
    In general attributes for runtime might be useful, which would allow more complex code analysis:
    [[average_time(n*std::log(n)), worst_time(n*n)]] void sort(...);
    I guess compilers could bubble up this attribute through callers, such that tools can show the runtime behavior of any function.

  • @TNothingFree
    @TNothingFree Před 2 lety +1

    You know it:s going to be a good presentation if Timur is presenting

  • @spacechild2
    @spacechild2 Před 2 lety +4

    53:31 If all threads were only try-locking, there is no need to use a mutex at all, you can just as well use a spinlock.

  • @yutubl
    @yutubl Před rokem

    @ real time safe dynamic memory: pre-configured and pre-allocatable data structures capacity like string, containers (vectors, ...) etc. can be used. As often in real time programming this shifts work from runtime to compile time, so memory use measurements with a profiler gives information for the system memory capacity configuration, which is good to be also on the safe side.

  • @richardvonlehe4581
    @richardvonlehe4581 Před 2 lety +3

    There were a lot of primitives from the thread support library getting tossed out. I wish there was a bit more time spent going over why. Having worked in an RTOS environment, posting semaphores or a msg to a queue seems like a common thing to do from a high priority thread.

  • @Luca-yy4zh
    @Luca-yy4zh Před rokem

    This is a very interesting talk. I liked the pmr trick to avoid dynamic memory allocation.

    • @lepidoptera9337
      @lepidoptera9337 Před rokem

      That's not a trick. That is an absolute necessity if you want your software to be truly reliable.

  • @bmutthoju8797
    @bmutthoju8797 Před 2 lety +1

    It is a very good talk! Thank you.

  • @jannhewi
    @jannhewi Před 2 lety +1

    thanks Timur.

  • @babgab
    @babgab Před 2 lety +3

    I find it sad that it's 2022 and Timur *still* has to dispel the "lambdas heap allocate" myth. Lambdas have been in the language for more than ten years at this point. How many CppCon talks pointing this out is it going to take before we can stop re-explaining all this?

  • @spacechild2
    @spacechild2 Před 2 lety

    38:48 Is waking up a thread really a problem in practice? If you do multi-threaded DSP, you always have to synchronize threads. The helper threads typically wait on a semaphore and the "main" audio thread posts to the semaphore to wake them up. How would you do this if you were not allowed to wake up threads?

  • @ChrisM541
    @ChrisM541 Před 2 lety

    Fascinating talk, thank you for this.
    If applicable, and where the problem areas are 'small'/manageable, would writing those sections in assembly language give you your required predictive execution behaviour? Of course, it would help if kernel calls are not used, or if used, they don't re-introduce what you seek to prevent. We used to re-write specific (problematic) kernel routines in days gone by - mainly removing their general purpose nature for our specific use cases(and gaining significant speed and 100% behavioural predictability)...don't know how doable that is here/today. A damn shame if those days are gone. Today's abstraction is both good and bad (loss of control, predictability, etc)

  • @e1123581321345589144
    @e1123581321345589144 Před 2 lety +3

    I'm not sure why you'd want to enter a try block if you don't want to throw exceptions. Isn't the whole point of that structure to guard against exceptions?

    • @timurdoumler4813
      @timurdoumler4813 Před 2 lety +2

      In some scenarios, you don't care about real-time safety (or performance in general) in the case you end up on the sad path (exception is thrown, and you go down some error handling code) but you do care about it on the happy path (exception is not thrown but the try block is still there)

    • @lepidoptera9337
      @lepidoptera9337 Před rokem

      @@timurdoumler4813 That's not how real-time is defined. Either it is real-time or it is not. If it isn't, then don't call it that.

  • @quantspot3292
    @quantspot3292 Před 3 měsíci

    Very useful talk

  • @urugulu1656
    @urugulu1656 Před 2 lety +3

    technically you could do algorithms that are linear or worse in time complexity if you know that your input is within a given range for that the time complexity is within the deadline (or rather some percentage thereof)

  • @drd7690
    @drd7690 Před 2 lety

    Great talk, thank you.

    • @CppCon
      @CppCon  Před 2 lety

      Glad you enjoyed it!

  • @francescobenacci6611
    @francescobenacci6611 Před rokem

    This is a great talk, and covering a subject which I didn't manage to find many good resources about. Can you recommend other resources that cover this topic? Or is the standard the only place to look into?

    • @lepidoptera9337
      @lepidoptera9337 Před rokem

      Rule number one: you don't rely on the standard to "guarantee" a compiler property. You actually check whether YOUR compiler actually has that property when it compiles YOUR code.

  • @stavb9400
    @stavb9400 Před 2 lety

    Most important I think here is avoid using std containers ( or maybe with a custom preallocator ) , and anything else appart from atomic in multithreading . I did not know actually stdarray is allocated on the stack good info there .

  • @shrddr
    @shrddr Před 2 lety

    49:10 are we seriously considering the possibility of rolling same INT_MAX value like a thousand times in a row? for it to be a noticeable performance hit

  • @yyyy-uv3po
    @yyyy-uv3po Před rokem

    We can add *std::span* to the list of useful std real-time-safe classes

  • @raksipulikka
    @raksipulikka Před rokem

    Really nice

  • @orthodoxNPC
    @orthodoxNPC Před 8 měsíci

    c++ and c# are the best. I'm trying to overcome dynamic allocations with my state-machine motion-control applications #squintHarder

  • @rocknroooollllll
    @rocknroooollllll Před 2 lety

    Something else I do is overload operator new and assert() it is never called once everything is set
    up. Thoughts?

    • @timurdoumler4813
      @timurdoumler4813 Před 2 lety +1

      operator new has A LOT of overloads (taking std::align_val_t, taking std::nothrow_t, etc). Do you handle all of them? Also, what happens if you work with a 3rd party class that overloads its own operator new? How do you guarantee that that never gets called?

  • @spacechild2
    @spacechild2 Před 2 lety

    54:30 std::atomic itself might add memory fences or hardware locks depending on the std::memory_order. You can't have lock free data structures without these. Luckily, there is no reason why they shouldn't be real-time safe. They work on the CPU level, not on the OS scheduler level.

  • @rocknroooollllll
    @rocknroooollllll Před 2 lety +1

    Why not just use std::vector and pre-allocate? Any reason why we should not do that?

    • @pierrecolin6376
      @pierrecolin6376 Před rokem

      You could do this to get a buffer of length computed at runtime before your thread goes real-time, but:
      • since its size would never change, you’d be better off with a std::unique_ptr stored alongside its size in a std::size_t since the vector has to additional data (like its capacity) which you wouldn’t need here;
      • you would still need the std::pmr::monotonic_buffer_resource.
      However, you couldn’t do it in a freestanding environment since dynamic allocations aren’t supported in those.

  • @yorailevi6747
    @yorailevi6747 Před 2 lety +1

    I am a little confused where can I find the slides for 2021?

  • @robertasylar
    @robertasylar Před rokem +1

    Great public speaking!

  • @spacechild2
    @spacechild2 Před 2 lety

    22:30 no mention of alloca()?

    • @timurdoumler4813
      @timurdoumler4813 Před 2 lety

      alloca() doesn't compose, it can only be used in the body of the function where it's called, so for example you can't build a dynamic array class around it.

  • @sjswitzer1
    @sjswitzer1 Před 2 měsíci

    Insertions into flat_map are not O(1). Indeed, get from a flat_map is O(log n). flat_map is bad news all around.

  • @urugulu1656
    @urugulu1656 Před 2 lety

    the best true random number generator ive seen is a reverse polarity base emitter junction in a bjt with non connected collector connected to an ADC...

    • @juliankandlhofer7553
      @juliankandlhofer7553 Před 2 lety +2

      I'll visit your house with a high gain antenna and an SDR and we'll see how random it is then 😁😉

  • @bernadettetreual
    @bernadettetreual Před 2 lety +1

    Why on earth would I use the STL in real-time scenarios. It's completely unsuitable (algorithms excluded) and figuring out whether I can use a piece from it takes me more time than rewriting it for real-time audio needs.

  • @andik70
    @andik70 Před 2 lety

    So stick to C?

    • @lepidoptera9337
      @lepidoptera9337 Před rokem +1

      For hard realtime? Yes, that's the safer bet. It's not necessary because C++ is not all that unreliable in this regard, but to be honest... if you have a real hard real time problem... like making sure that that 100 ton crane really stops before something really heavy hits the ground really hard... yeah, stick to C. ;-)

  • @dennisrkb
    @dennisrkb Před 2 lety +1

    This guy has an unwarranted phobia of multi-threading. What guarantees are there that his beloved single thread won't be interrupted and re-scheduled by the OS? None. I'd rather make my app faster with multi-threading and thus more "realtime".

    • @spacechild2
      @spacechild2 Před 2 lety +3

      > This guy has an unwarranted phobia of multi-threading.
      Where do you see this?
      > What guarantees are there that his beloved single thread won't be interrupted and re-scheduled by the OS?
      By setting the appropriate thread priority.
      > I'd rather make my app faster with multi-threading and thus more "realtime".
      Multi-threading and realtime-safety are orthogonal. You can use several threads for real-time audio computation (most DAWs do this), but the code for each thread still has to be real-time-safe.

    • @timurdoumler4813
      @timurdoumler4813 Před 2 lety +2

      If you have a real-time audio processing thread, there isn't a hard guarantee as such (because it's not a RTOS) but in practice it works really well as the thread gets a high priority assigned by the OS and therefore won't be rescheduled unless you miss the deadline

  • @xequals-pc1wl
    @xequals-pc1wl Před 2 lety +1

    In conclusion: Don't use C++.