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

Поділитися
Вставка

КОМЕНТАРІ • 64

  • @dominichofer136
    @dominichofer136 2 роки тому +15

    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 2 роки тому +18

    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 Рік тому +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 8 місяців тому +1

      7:35

  • @batner
    @batner 2 роки тому +4

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

  • @nickm8134
    @nickm8134 2 роки тому +11

    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  2 роки тому +1

      Glad it was helpful!

  • @LDdrums20
    @LDdrums20 2 роки тому +19

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

    • @sergeykolesnik1171
      @sergeykolesnik1171 Рік тому +1

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

  • @thebasicmaterialsproject1892
    @thebasicmaterialsproject1892 2 роки тому +17

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

  • @tomkirbygreen
    @tomkirbygreen 2 роки тому +3

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

  • @uran0
    @uran0 2 роки тому +2

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

  • @TNothingFree
    @TNothingFree 2 роки тому +1

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

  • @cmdlp4178
    @cmdlp4178 2 роки тому +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.

  • @spacechild2
    @spacechild2 2 роки тому +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.

  • @SurfinScientist
    @SurfinScientist Рік тому +1

    I learned a lot from this talk. Excellent presentation!

  • @yutubl
    @yutubl Рік тому

    @ 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 2 роки тому +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 Рік тому

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

    • @lepidoptera9337
      @lepidoptera9337 Рік тому

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

  • @urugulu1656
    @urugulu1656 2 роки тому +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)

  • @e1123581321345589144
    @e1123581321345589144 2 роки тому +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 2 роки тому +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 Рік тому

      @@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.

  • @bmutthoju8797
    @bmutthoju8797 2 роки тому +1

    It is a very good talk! Thank you.

    • @CppCon
      @CppCon  2 роки тому

      Thank you too!

  • @stavb9400
    @stavb9400 2 роки тому

    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 .

  • @babgab
    @babgab 2 роки тому +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?

  • @orthodoxNPC
    @orthodoxNPC Рік тому

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

  • @yyyy-uv3po
    @yyyy-uv3po Рік тому

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

  • @jannhewi
    @jannhewi 2 роки тому +1

    thanks Timur.

  • @quantspot3292
    @quantspot3292 7 місяців тому

    Very useful talk

  • @ChrisM541
    @ChrisM541 2 роки тому

    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)

  • @spacechild2
    @spacechild2 2 роки тому

    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.

  • @spacechild2
    @spacechild2 2 роки тому

    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?

  • @shrddr
    @shrddr 2 роки тому

    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

  • @sjswitzer1
    @sjswitzer1 5 місяців тому

    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.

  • @drd7690
    @drd7690 2 роки тому

    Great talk, thank you.

    • @CppCon
      @CppCon  2 роки тому

      Glad you enjoyed it!

  • @rocknroooollllll
    @rocknroooollllll 2 роки тому +1

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

    • @pierrecolin6376
      @pierrecolin6376 2 роки тому

      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.

  • @robertasylar
    @robertasylar 2 роки тому +1

    Great public speaking!

  • @bernadettetreual
    @bernadettetreual 2 роки тому +3

    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.

  • @urugulu1656
    @urugulu1656 2 роки тому

    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 2 роки тому +2

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

  • @francescobenacci6611
    @francescobenacci6611 2 роки тому

    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 Рік тому

      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.

  • @raksipulikka
    @raksipulikka Рік тому

    Really nice

  • @yorailevi6747
    @yorailevi6747 2 роки тому +1

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

    • @juliankandlhofer7553
      @juliankandlhofer7553 2 роки тому

      good question, there doesn't seem to be a github repo for them yet.

  • @rocknroooollllll
    @rocknroooollllll 2 роки тому

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

    • @timurdoumler4813
      @timurdoumler4813 2 роки тому +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 2 роки тому

    22:30 no mention of alloca()?

    • @timurdoumler4813
      @timurdoumler4813 2 роки тому

      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.

  • @andik70
    @andik70 2 роки тому

    So stick to C?

    • @lepidoptera9337
      @lepidoptera9337 Рік тому +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 2 роки тому +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 2 роки тому +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 2 роки тому +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 2 роки тому +2

    In conclusion: Don't use C++.

    • @spacechild2
      @spacechild2 2 роки тому +6

      How do you come to this conclusion?

    • @SisypheanRoller
      @SisypheanRoller 2 роки тому +1

      Let me guess you're going to use rust