No video

Optimizing Away C++ Virtual Functions May Be Pointless - Shachar Shemesh - CppCon 2023

  Рет қаралды 16,521

CppCon

CppCon

Күн бұрын

cppcon.org/
---
Optimizing Away C++ Virtual Functions May Be Pointless - Shachar Shemesh - CppCon 2023
github.com/Cpp...
We all know that Virtual Functions Should Be Avoided. A great many tutorials exist for replacing virtual functions with compile-time polymorphism mechanisms, such as std::variant and templates. But is that feeling justified? Are virtual functions truly slower? By how much? Does it matter for your particular use case? What costs do their alternatives carry?
In this lecture we'll try and understand where that impression came from, what virtual functions do that make them slower and how all of that interacts with modern CPU architectures. We'll also explore the limits of benchmarks for answering those questions.
This lecture may not supply you with answers, but it will supply you with better questions.
---
Shachar Shemesh
Shachar Shemesh has been programming computers since the 8-bit era, and still finds passion in it today. Shachar's professional career has taken him to security, networking, storage and video streaming.
Outside his professional career Shachar is... also programming. He has several open source projects to his name, and is lately working on creating his childhood computers, from scratch, on low-cost FPGAs.
Shachar also plays the saxophone. Not necessarily well.
__
Videos Filmed & Edited by Bash Films: www.BashFilms.com
KZbin Channel Managed by Digital Medium Ltd: events.digital...
---
Registration for CppCon: cppcon.org/reg...
#cppcon #cppprogramming #cpp

Пікірлер: 111
@sampro454
@sampro454 5 ай бұрын
10/10 "who am I?" slide
@ujin981
@ujin981 5 ай бұрын
he's definitely no Casey Muratori kzbin.info/www/bejne/qnWYf6Wbq6unmLcsi=yJA2QgKbbV1urmS5
@embeddor3023
@embeddor3023 5 ай бұрын
This is by far the best speaker introduction slide I have seen ever.
@X_Baron
@X_Baron 5 ай бұрын
The ending too: Let's take this outside, bring it on!
@garethma7734
@garethma7734 5 ай бұрын
11/10 benchmark slide
@PaulTopping1
@PaulTopping1 5 ай бұрын
The important takeaway from this whole talk, IMHO, is that design issues should determine whether you should use virtual functions, not performance considerations. Only when something doesn't perform well enough for the task should you worry about eliminating virtual functions and only as part of a comprehensive performance analysis where that is only one of many strategies under consideration. Makes sense to me.
@BlackBeltMonkeySong
@BlackBeltMonkeySong 5 ай бұрын
If you write code this way, you may find that virtual functions proliferate your codebase in a way that is impossible to remove. For example, google heavily uses protobufs even though it is at least twice as slow, and sometimes 10x slower than using modern C++ without virtual functions. It's just too hard to fix.
@TheOnlyAndreySotnikov
@TheOnlyAndreySotnikov 5 ай бұрын
On this, I can quote Alexandrescu: "Easy on yourself, easy on the code: All other things being equal, notably code complexity and readability, certain efficient design patterns and coding idioms should just flow naturally from your fingertips and are no harder to write than the pessimized alternatives. This is not premature optimization; it is avoiding gratuitous pessimization."
@Evan490BC
@Evan490BC 5 ай бұрын
@@BlackBeltMonkeySongThe question to ask is: do you really need OO programming and runtime polymorphism? Modern C++ is moving away from those concepts and more towards functional programming and composition.
@AlfredoCorrea
@AlfredoCorrea 5 ай бұрын
@@BlackBeltMonkeySong actually, even heavily OO code bases can benefit from variant since both approaches are not contradictory. What I did in the past was to take a (closed) inheritance system and make variants out of leaf classes. The benefits were immediate since visit overloads could take advantage of the (static) commonality between alternatives and the instances could be created without heap allocations and stored in STL containers.
@alskidan
@alskidan 5 ай бұрын
My conclusions: benchmarking is hard, especially when you don’t know what you’re measuring 🤣
@CompuSAR
@CompuSAR 5 ай бұрын
My conclusion was that benchmarks are meaningless. Almost always. It has less to do with how well you know what you're doing and more to do with how complicated the hardware optimizations are. Even taking a piece of code you actually use and isolating it will change its performance. So don't benchmark. Profile.
@chrisminnoy3637
@chrisminnoy3637 5 ай бұрын
Guys, maybe you should study the branch prediction strategies of modern cpus and cache management. That will give you insight how specific cpus completely eliminate the time difference between a direct and indirect call in more than 90% of the time. But smaller code will run faster because more code fits into cache lines, and indirect calls are a bit bigger. So then the performance of cache handling is again the determinating factor. To conclude, just use virtual functions when it makes sense.
@CompuSAR
@CompuSAR 5 ай бұрын
The flip side of this argument happens when you look at the alternatives for virtual functions. There are switch/case, where prediction might be actually more difficult for the CPU, and thus slower, and there are templates, which blow up the code size, putting more stress on the caches. In fact, that was my original prediction going into this research. What I found out, however, was that even the simplest cases don't behave the way I expected them to.
@babgab
@babgab 4 ай бұрын
I'd rather not depend on the CPU to be smart if I can avoid it. It makes reasoning about what code needs attention harder if there's only a *probability* (depending on CPU and runtime conditions) that something needs attention. A bit slow but consistent is sometimes better than usually fast but randomly and uncontrollably very slow.
@ArthurGreen-bw3sb
@ArthurGreen-bw3sb 5 ай бұрын
The thing about which cases are "natural" for inheritance seems to be an important issue. If you've spent a decade writing Java and using GoF patterns, then inheritance becomes the natural solution for a lot of problems that you might use other techniques for otherwise.
@theodoredokos8145
@theodoredokos8145 5 ай бұрын
I think this is a very good point. The Java dev’s thoughts could look very different compared to a C library developer, for example. The fact that we have modern languages that deliberately eschew inheritance is an important indicator of that subjectivity, as well.
@reneb86
@reneb86 3 ай бұрын
I think every developer instinctively has felt that the "virtual functions are slow" claim is overly generalized. Virtual functions have a practical purpose, and that practical purpose can outweigh a need for performance. And given a proper context, the correct implementation of virtual functions will also yield performance gains. What is surprising here is that compiler optimization and cpu management seems to be a decade or two ahead of what developers are thinking.
@RPG_Guy-fx8ns
@RPG_Guy-fx8ns 5 ай бұрын
if you are making systems that handle large amounts of data quickly, it ideally should not be object oriented or use virtual functions or inheritance. It should be data oriented, and parallelized, like a GPU particle system. Functions and data should be separated, and functions should act on packed arrays of data organized by traits, not objects. Avoiding cache misses is not pointless, and removing inheritance and virtual functions is only part of the solution. This can speed up your code by very significant amounts, especially in video games or large simulations.
@vladimir0rus
@vladimir0rus 5 ай бұрын
The important takeaway from this whole talk, IMHO, is that "If it is fast enough - use it!". For some people a Python is fast enough. There is no way a virtual call can be faster than a direct call so the rest of the talk was about inability of the author to measure the difference properly.
@soumen_pradhan
@soumen_pradhan 5 ай бұрын
I now know less.
@CompuSAR
@CompuSAR 5 ай бұрын
I feel exactly the same, and I'm the one who gave this talk.
@austinscott4695
@austinscott4695 5 ай бұрын
congratulations!
@bunpasi
@bunpasi 5 ай бұрын
Haha. We just realized that we know less than we thought. That is still progress ... I guess.
@Adowrath
@Adowrath 2 ай бұрын
And that's a great thing to acknowledge!
@tomkirbygreen
@tomkirbygreen 5 ай бұрын
Love the take away that design is supreme, but also the energy and enthusiasm with which the topic is explored. Awesome stuff sir. Kudos.
@CompuSAR
@CompuSAR 5 ай бұрын
Thank you!
@DerHerrLatz
@DerHerrLatz 2 ай бұрын
Reading the comments is even better than watching the video. This topic seems to be hotter than tabs vs. spaces.
@surters
@surters 5 ай бұрын
Branch target buffers have increased over the years, that might be why it suddenly is a different scenario now.
@gregthemadmonk
@gregthemadmonk 5 ай бұрын
Interesting to see how running the benchmark from the StackOverflow question on a modern compiler (thankfully the OP provides QuickBench links) results std::visit being actually faster on Clang 17 + libstdc++ (and slower on libc++ :) ) than a virtual function call. Guess it just further proves the point of the talk :)
@Roibarkan
@Roibarkan 5 ай бұрын
10:18 Shachar’s KZbin channel: youtube.com/@CompuSAR Trailer: kzbin.info/www/bejne/kIarlKCPhap_p8k Great talk!
@CompuSAR
@CompuSAR 5 ай бұрын
Thank you! Much appreciated.
@bescein
@bescein 5 ай бұрын
If he wanted to prove benchmarks show nothing he chose test subject poorly. The main downside of virtual functions is that they cannot be inlined. Thats the whole reason people tend to avoid them.
@CompuSAR
@CompuSAR 5 ай бұрын
Can you explain why the answer I gave to that very same question at minute 28:00 in the video doesn't satisfy you?
@N....
@N.... 5 ай бұрын
This is discussed at 27:54 - the point of the benchmark is to compare ways of implementing customization points. You can't always inline customization points, for example if that static function call is from a dynamically loaded library.
@videofountain
@videofountain 5 ай бұрын
Thanks. Cache, Benchmark, Profile. Interesting casting of doubt 🎊 to make more work for programmers and have a community consider more of the total measurement picture.
@user-ov3co8ok5d
@user-ov3co8ok5d 4 ай бұрын
Some time early in the talk ( 3:53 ) he says he asked experts about possible reasons for the virtual/concrete diffs, a large chunk of the talk was attempts to poke at potential reasons (cache sizes and whatnot) and then at the end (31:31 ) in answer to a (smart!) suggestion from the audience about a potential way to isolate the reasons - he cut the question and says he absolutely positively doesn't even care about why? It seems needlessly hard for some speakers to give simple answers like "thanks, i didn't think of that".
@CompuSAR
@CompuSAR 4 ай бұрын
31:31 is the end of the video. Did you mean 30:00, which talks about comparing CLANG and GCC outputs? Because if so, it's a completely different question. The consulting with experts was to make sure I'm not missing some obvious bug in the benchmark, where what I'm measuring is different than what I think I'm measuring. While there is _some_ benefit to understanding why performance behaves the way it does, at the end of the day you input source code and get assembly, and it's very rare to hand-tweak the output. That's my whole point: you should measure things in the context you use them.
@TechTalksWeekly
@TechTalksWeekly 5 ай бұрын
This talk has been featured in the #6 issue of Tech Talks Weekly newsletter. Congrats Shachar 👏👏👏
@CompuSAR
@CompuSAR 5 ай бұрын
Thank you!
@moshegramovsky
@moshegramovsky 5 ай бұрын
Great video! I have wondered about all the hate I've seen for virtual functions and inheritance-based polymorphism in the last few years. Some of the proposed solutions are baffling in terms of performance. Especially some type erasure strategies like variants.
@CompuSAR
@CompuSAR 5 ай бұрын
Thank you!
@Fudmottin
@Fudmottin 5 ай бұрын
I always thought virtual functions were a nice way to create maintainable code at the cost of a small bit of performance due to the VTABLE lookup for an indirect call. I was willing to accept that cost for functions that did enough work that the call was a trivial portion of it. Now I'm wondering, why worry?
@ruadeil_zabelin
@ruadeil_zabelin 5 ай бұрын
28:00 Loss of inlining isn't always a problem. Too agressive inlining pollutes your cache too and can be slower in certain conditions. Coming back to... measure it properly in your real application
@TheOnlyAndreySotnikov
@TheOnlyAndreySotnikov 5 ай бұрын
First, the benefit of inlining is not precisely in the lack of calls but instead in the opportunity to optimize the code, which is otherwise split between several functions. Second, compilers know about the CPU architectures and the drawbacks of aggressive inlining. If functions are inlinable, this gives the compiler a 𝘤𝘩𝘢𝘯𝘤𝘦 to use inlining and optimization wisely. If functions are virtual, these chances are exactly zero.
@babgab
@babgab 4 ай бұрын
@@TheOnlyAndreySotnikov Not *quite* zero, if you're directly using a method that is marked "final" I'd expect the compiler to figure out that it doesn't need the virtual call there and inline. But still.
@mariogonzalezmunzon7076
@mariogonzalezmunzon7076 5 ай бұрын
Very great talk, deep explanation on hard concepts, will need to rewatch it many times to really understand it.
@CartoType
@CartoType 5 ай бұрын
A very good presentation. Clear, to the point, correctly paced. And a surprising and useful conclusion.
@CompuSAR
@CompuSAR 5 ай бұрын
I find your use of the word "conclusion" baffling, but thank you anyways.
@LarryOsterman
@LarryOsterman 5 ай бұрын
A *great* exploration. And a graphic demonstration of why doing performance analysis the world of modern processors is unbelievably hard (edited to remove a reference to benchmarking, since it's a broader area of challenges).
@CompuSAR
@CompuSAR 5 ай бұрын
Thank you.
@colonelmax1
@colonelmax1 5 ай бұрын
Those benchmarks are not representative at-all. No warmup, no CPU power state and frequency locking, ....
@CompuSAR
@CompuSAR 5 ай бұрын
Warmup? They run millions of times. Frequency locking? If you don't frequency lock your actual production code, why would frequency locking the benchmark do anything? The premise of this criticism is that you want to use the benchmark to isolate just this one operation out of the whole. But with modern CPUs, the CPU is the one mixing everything together. If you succeed in isolating a single part, the results are going to be even more meaningless than usual.
@TheArech
@TheArech 5 ай бұрын
Thought I put a thumb up, I also have to note that his benchmarks are representative of the actual real world systems which could execute the code - no one will do a warmup, lock CPU freq scaling, power handling & etc just to run some tools. So this is exactly as he said - results are perfectly valid for his own 2 PC, and he can't neither explain it, nor scale it. Doing benchmarking properly could help to explain the results, but the issue of scaling (probably the most important one) still remains.
@user-es9qo9hx2r
@user-es9qo9hx2r 5 ай бұрын
You are missing his point. When your program runs in reality, it won't be in such a tightly controlled environment. Hence, whatever you learn from such a tightly controlled environment won't matter.
@meneldal
@meneldal 4 ай бұрын
@@CompuSAR If you want to compare how 2 things perform, you have to remove external variables that throw in noise in your measuring. The only way to get a noiseless benchmark is to use a hardware simulator, where you can get cycle-accurate counts of how much time something is taking (and you're stubbing all the outside environment factors like temperature). If you can't get that, you could run on bare metal, which will free you of an OS injecting tons of noise in your measurement, and if you disable variable clock in the cpu would give you something pretty consistent. The great thing with hardware simulators is you can clearly observe the effects of a cache miss on the latency of something like an interrupt call, like the first interrupt was 800ns slower because of a bunch of cache misses (the firq handler instructions, the handler function array and the handler function itself). Obviously you can't do that for any machine since x86 cpus aren't really open and licenses from arm not exactly cheap either, but if you need to get the most performance at any cost you have to go very low level.
@nicholastheninth
@nicholastheninth 4 ай бұрын
Well there was once where I decided to not inline a function inside a loop that gets called a few thousand times per frame, and the performance shot down to 60% of the perf when force-inlining it, even though it really shouldn’t have mattered (the function does a non-insignificant amount of work).
@andreaselfving2787
@andreaselfving2787 2 ай бұрын
I wonder how the results would have been in a bare-metal embedded system, like cortex-m or avr core
@TheOnlyAndreySotnikov
@TheOnlyAndreySotnikov 5 ай бұрын
The primary source of virtual function slowness is that the compiler can't inline them and thus can't optimize across the function boundaries. A simple non-virtual getter, in most cases, will be optimized to a register operation; a virtual getter, on the other hand, will require an indirect call and will be orders of magnitude slower. You are done if you have such a getter in an often-executed loop.
@tikabass
@tikabass 5 ай бұрын
most designs are more complex than setters...
@tistione
@tistione 5 ай бұрын
You would be surprised how little overhead such a small virtual getter has. A few % at worst on modern cpus.
@CompuSAR
@CompuSAR 5 ай бұрын
You're comparing two different things. If a non-virtual getter is an option then, yes, putting in a virtual function is a poor replacement (for all sorts of reasons). But if a virtual gettter is what you need, the non-virtual alternatives are not a non-virtual getter. It's a switch case with lots of options. When comparing optimizations, you need to compare optimizations of constructs with similar power.
@Roibarkan
@Roibarkan 5 ай бұрын
Self promotion) in a cppnow talk from 2021 I had some discussion about the cost of virtual function calls, devirtualization and where (if at all) variant can help: kzbin.info/www/bejne/j3O7g5yGgMaSmMUh18m48s
@TheOnlyAndreySotnikov
@TheOnlyAndreySotnikov 5 ай бұрын
@@tikabass Really?!
@Dominik-K
@Dominik-K 5 ай бұрын
Really good presentation! Performance can be important and not losing oneself in assembly if not necessary are important
@CompuSAR
@CompuSAR 5 ай бұрын
Thank you!
@AlfredoCorrea
@AlfredoCorrea 5 ай бұрын
The advantage of variant is the value semantics it provides (runtime values), while Virtual functions are ideal to interface with “plugins” (unbounded dynamic behavior). Neither use case is performance driven in principle. IMO the good news is that there are red flags for each use case: if you are using get_if or holds_alternative all the time, variant is not the right choice; If you are using dynamic_cast all the time Virtual is not the right choice. Also, it is not binary choice, there is a whole spectrum of type erasure techniques that happen to include these two cases.
@N....
@N.... 5 ай бұрын
It's also worth noting that virtual functions and variants are not mutually exclusive - you can have a variant where every type inherits from a base class and keep a base class pointer for virtual function calls into the value held in the variant (ideally wrapped in a proper container for safety though)
@AlfredoCorrea
@AlfredoCorrea 5 ай бұрын
@@N.... yes, like anything, variant alternative types benefit from having commonality and it happens that derived classes have a lot of commonality. What you imply is something that I used in the past, in the context of coworkers that are fanatics of virtual functions and have a stablished inheritance system; i made variants of derived classes (or a thin wrapper of such variant) and suddenly I could store them in arrays or containers and handle them as values and without extra heap allocations.
@younesmdarhrialaoui643
@younesmdarhrialaoui643 5 ай бұрын
10/10
@JSzitas
@JSzitas 5 ай бұрын
I think unless you show median/minimum timings for a piece of code, benchmarks are indeed meaningless (almost by design).
@matiasgrioni292
@matiasgrioni292 4 ай бұрын
The talk is good, but the presenter's handling of questions certainly does not make me think that he thinks his talk is not a period.
@CompuSAR
@CompuSAR 4 ай бұрын
That's an interesting point (though, in fairness, there was a clock in front of me saying "you have 30 more seconds to clear the stage"). What do you think I should have done differently? I find it a bit sad that this is the most relevant criticism I have received to date. I honestly do want a discussion, but I definitely do want to change the discourse around performance. I think benchmarks that artificially isolate one component may come to a very clear conclusion, but if that conclusion doesn't reflect on the real world then it's pointless.
@bboysil
@bboysil 5 ай бұрын
This talk is a great talk about "which is faster" and how to really measure using statistcs: kzbin.info/www/bejne/boHLYp9jlJWDm6s
@Roibarkan
@Roibarkan 5 ай бұрын
Indeed. Another great talk on the same subject, and the same author (Emery Berger) - from cppcon: kzbin.info/www/bejne/oaC3l2qrZdtnZ9E
@iddn
@iddn 5 ай бұрын
The amount of people who share micro-benchmarks that they’ve run on laptops is crazy. Laptops are useless for this
@bunpasi
@bunpasi 5 ай бұрын
Well, if your customers use primarily laptops ...
@cedricmi
@cedricmi 5 ай бұрын
I agree. But in some cases, you do care for performance differences, even if the performance is "good enough". For example, when you're at a scale where an app electricity cost is a consideration, if not the main consideration.
@CompuSAR
@CompuSAR 5 ай бұрын
I'd argue that if electricity cost is a consideration, then the performance isn't "good enough". "Good enough" is a deliberately subjective term.
@sirhenrystalwart8303
@sirhenrystalwart8303 5 ай бұрын
Forget about performance. Virtual functions make your code base hard to understand. Only use when absolutely necessary.
@user-ge6yb9rj9o
@user-ge6yb9rj9o 5 ай бұрын
Revisiting the debate on virtual method performance seems redundant, even if not as slow today as some believe. The justification for OOP and therefore virtual methods has become less pressing as the industry shifts towards composition over inheritance, so let's focus on the best practices that have evolved rather than defending outdated ones. Benchmarking is definitely not useless, it compliments profiling in the same way that unit tests do for integration tests.
@Nors2Ka
@Nors2Ka 4 ай бұрын
The 4:00 mark perfectly summarizes why this talk is a waste of time.
@CompuSAR
@CompuSAR 4 ай бұрын
If you do know, please share. If you don't, then I don't think it's a waste of time to map what we thought we knew but don't.
@johnmcleodvii
@johnmcleodvii 5 ай бұрын
Premature optimization is a huge easte of time. Only try to optimize if your program is too slow. Then you need to figure where in your code it is too slow, and why that section os too slow Two distinct cases i eorked on come to mind. Case 1. Every access to a file involved opening and closing the file. Tye solution eas to keep the file open. Unfortunately this was done in a garbage collected language, so every instance of the class had to be found, modified, and tested. And there were a couple thousand instances - several weeks of work for yhe programmers, several more for testing. Case 2. The innermost loop was slow in an image editor. Inspection of the asembly language showed that the compiler was reading a byte, changing one bit, writing the byte, reading the same byte, changing the next bit, writing the byte again. This was done 8 times before the next byte was retrieved. The solution was to hand write the assembly code for the innermost loop. We tewrite it duch that the byte eas read, all 8 bits were modified, and the byte was written. Speedup of around a factor of 8.
@CompuSAR
@CompuSAR 5 ай бұрын
Whenever I come across case 2, I try to figure out why the optimizer didn't pick it up itself. I then try to fix that instead. As a pure guess, I'd say that you were dereferencing a pointer somewhere in the loop, and the compiler couldn't prove to itself that the pointer wasn't aliasing to the value you were changing. I rather trivial change to another part of the loop may have solved your problem without having to write (and then maintain) assembly.
@sirhenrystalwart8303
@sirhenrystalwart8303 5 ай бұрын
In 2024, almost all programs are slow. They are slower than they were 25 years ago because everybody has adopted this lazy ideology.
@babgab
@babgab 4 ай бұрын
Depends on what you consider "optimization." By the time you know your program is too slow, it may be too late to optimize, and the slowdowns may be spread through your entire program in a "death by a thousand cuts" situation. Not considering performance up front can create more work than it saved.
@lol785612349
@lol785612349 5 ай бұрын
So let's summerize: Premature optimization is the root of all evil and the optimization is premature earlier than you think.
@CompuSAR
@CompuSAR 5 ай бұрын
Sounds about right. Next I'll submit the talk, I'll say I only need 5 minutes.
@TheOnlyAndreySotnikov
@TheOnlyAndreySotnikov 5 ай бұрын
It's exhausting how often claiming "premature optimization" is used to justify sloppy thinking. Andrei Alexandrescu: "Easy on yourself, easy on the code: All other things being equal, notably code complexity and readability, certain efficient design patterns and coding idioms should just flow naturally from your fingertips and are no harder to write than the pessimized alternatives. This is not premature optimization; it is avoiding gratuitous pessimization."
@babgab
@babgab 4 ай бұрын
@@TheOnlyAndreySotnikov Yep. I've seen "premature optimization" used to justify using std::set instead of a simple switch statement, an unordered_map instead of an enum that indexes an array... People overcomplicate things and when you point this out, they claim it's "simpler" and you're asking them to "optimize prematurely." It's bizarre.
@user-ck9eh6ld5y
@user-ck9eh6ld5y 5 ай бұрын
Inheritance, virtual functions, that's for boomers, totally uncool ;-)
@CompuSAR
@CompuSAR 5 ай бұрын
And yet you've spent the time, if not watching the video then at least writing this comment.
@r2com641
@r2com641 5 ай бұрын
You right, it’s better just to optimize out the whole c++ and use a sane language, thanks god we are in 2024 and have choices 👌
@Lalasoth
@Lalasoth 5 ай бұрын
I'm confused. If you dislike C++ so much why waste time watching this ? Aren't their better uses of your time ? I am wasting mine talking to you but its amusing that you hate so much that you waste your time posting comments about it. Just move on already :)
@SqueakyNeb
@SqueakyNeb 5 ай бұрын
Every language has an equivalent problem to virtual functions. Even if they don't, you'll still write the same behaviour eventually. If you ever write code that looks like "if(thing.type == A) doA(thing) else if(thing.type == B) doB(thing)" then you've invented virtual functions. And really, the point of the talk is just "here's another thing that people think are slow, here's some benchmarks to mess them up, stop being afraid of using tools when you don't even know their overhead".
@h4ndle_yt
@h4ndle_yt 5 ай бұрын
oh no a cultist
@CompuSAR
@CompuSAR 5 ай бұрын
@@SqueakyNeb I gave this talk several times, and each time got the impression that nobody got what I was trying to say. It's very obvious to me that you _did_ get what I was trying to say. Thank you.
@r2com641
@r2com641 5 ай бұрын
@@SqueakyNeb wrong. First of all, you are viewing it as black or white, this is not the way it works. Your specific example with just two cases will be much faster than using virtual function. When there are few cases then it’s always faster, if there are many branching cases and conditions inside change often then it’s harder for compiler to predict branch and yes then theoretically virtual function will be faster, but in any case virtual function has extra level of indirection in a form of a virtual table lookup overhead which is always there. On top of that if one used switch statement then he can potentially be even faster since compilers can optimize switch better than if else. So if programmer knows how to properly write his branched code in an effective way he will best performance of virtual functions usage easily. But if he is a noob like you, then yeah, his pure C code will be as slow as if one used virtual functions. I hope it’s clear
小丑把天使丢游泳池里#short #angel #clown
00:15
Super Beauty team
Рет қаралды 40 МЛН
Meet the one boy from the Ronaldo edit in India
00:30
Younes Zarou
Рет қаралды 14 МЛН
Can This Bubble Save My Life? 😱
00:55
Topper Guild
Рет қаралды 60 МЛН
C++ Weekly - Ep 439 - mutable (And Why To Avoid It)
8:48
C++ Weekly With Jason Turner
Рет қаралды 10 М.
Databases are the endgame for data-oriented design
20:31
SpacetimeDB
Рет қаралды 1,6 М.
*Steve Jobs' Wet Dream*
8:57
Programmers are also human
Рет қаралды 58 М.
Can You Drive On Wood Wheels?
19:42
Waterjet Channel
Рет қаралды 79 М.
小丑把天使丢游泳池里#short #angel #clown
00:15
Super Beauty team
Рет қаралды 40 МЛН