No video

"Performance Matters" by Emery Berger

  Рет қаралды 482,113

Strange Loop Conference

Strange Loop Conference

Күн бұрын

Пікірлер: 165
@azymohliad
@azymohliad 5 жыл бұрын
This is definitely one of the best conference talks I've ever seen!
@jotun42069
@jotun42069 5 жыл бұрын
Extremely interesting research and a great presentation, thanks!
@Eduardo1007
@Eduardo1007 3 жыл бұрын
I'm not even a programmer and enjoyed this presentation. I wish I had teachers like him!
@RaidenFreeman
@RaidenFreeman 4 жыл бұрын
This talk is incredible, great job to everyone involved.
@00jknight
@00jknight 5 жыл бұрын
This is an awesome talk, with some great, novel information (at least to me). The name of the program, "Stabilizer" is humorous, as it is actually more of an "unstabilizer". Excellent work Emery. I would love to see a example program that demonstrates significant performance delta between memory layouts.
@Maciej-Komosinski
@Maciej-Komosinski 4 жыл бұрын
Stabilizer, because it stabilizes mean results (by "destabilizing" test conditions).
@joechang8696
@joechang8696 4 жыл бұрын
Concerning O1, O2 optimization, fit in L1 and L2 cache is a big deal. If O1 binary happens to fit in L1/L2 and O2 does not, then the O1 binary could perform better than O2. The big thing today is that memory round-trip access time is a couple of hundred CPU-cycles. Try to avoid too much pointer-chasing code. Prefetch memory when possible. Note, Intel Core iX processors up to generation 9 have 256K L2. The Xeon SP lines have 1M L2 at 2 additional cycles access time. 10th gen Core have 512K L2. Be aware that Intel processors since about mid-2000 had cache line size of 64 bytes. Prior to that, it was 32-bytes. My view, too many software people have purist view of the world, thinking they can achieve great performance without consideration for the details of the underlying hardware.
@lincolnsand5127
@lincolnsand5127 4 жыл бұрын
I've never known anyone focused on performance who didn't care about the underlying hardware. Timur Doumler even has a talk called "Want fast C++? Know your hardware." Also. Most of the stuff you mentioned forms the basis of things like DoD (Data Oriented Design).
@nyankers
@nyankers Жыл бұрын
you can only focus on hardware if you control the hardware
@voxelfusion9894
@voxelfusion9894 Жыл бұрын
@@nyankers precisely. Focusing on hardware is only something you do for compute clusters, where you're running on bare metal, and therefore know exactly what is running where. Otherwise, your cache optimization could just make things worse on a different platform.
@swapode
@swapode 4 жыл бұрын
The SQLite example surprises me a little. Indirect calls seems like something I would expect the compiler to optimize already.
@manuelbergler6884
@manuelbergler6884 4 жыл бұрын
Well, not through function pointers as in the SQLite example
@EmeryBerger
@EmeryBerger 5 жыл бұрын
All code and papers are linked from here: plasma-umass.org. To install coz on Debian or Ubuntu: % sudo apt-get install coz-profiler Papers: * "Stabilizer: Statistically Sound Performance Evaluation" [ASPLOS 13] people.cs.umass.edu/~emery/pubs/stabilizer-asplos13.pdf * "Coz: Finding Code that Counts with Causal Profiling" [SOSP 15 Best Paper, CACM Research Highlight] sigops.org/s/conferences/sosp/2015/current/2015-Monterey/printable/090-curtsinger.pdf * Mentioned during talk: "Producing Wrong Data Without Doing Anything Obviously Wrong!" [ASPLOS 09] Todd Mytkowicz, Amer Diwan, Matthias Hauswirth, and Peter Sweeney users.cs.northwestern.edu/~robby/courses/322-2013-spring/mytkowicz-wrong-data.pdf Slides are here (Keynote): emeryberger.github.io/presentations/performance-matters-strangeloop2019.key Reddit discussion thread: www.reddit.com/r/programming/comments/d4k5x5/performance_matters_by_emery_berger_strange_loop/
@georgepantazes5923
@georgepantazes5923 4 жыл бұрын
This was an amazing talk! Lots of counterintuitive things to correct in our mental models about performance, thank you for the knowledge! Haha, I loved the "eyeball statistics". Wonderful.
@ehhhhhhhhhh
@ehhhhhhhhhh 2 жыл бұрын
Wow. He went from theory, background knowledge, to full blown applied uses at a really nice pace. This is a great lecture for any student in software engineering. Love the reminders that certain optimizations can cause slowdown--as well as the reminder that rolling your own naive hash table can have disastrous consequences for performance (37:23)
@TheLoneWolfling
@TheLoneWolfling Жыл бұрын
And on the flip side, the reminder that indirection can be surprisingly expensive.
@ralph6591
@ralph6591 4 жыл бұрын
That guy just explained what the p-value is and how it works in just few seconds - that was an entire lecture at uni. Wow
@abebuckingham8198
@abebuckingham8198 2 жыл бұрын
It's much easier to explain when you don't have to calculate it.
@nickyyyyy
@nickyyyyy 2 жыл бұрын
@@abebuckingham8198 Because p values are notoriously difficult to calculate
@DajesOfficial
@DajesOfficial Жыл бұрын
It's much easier to understand when you already know what it is.
@davidmark1673
@davidmark1673 Жыл бұрын
He did didn't he (professional statistician here)
@spacelem
@spacelem Жыл бұрын
@@davidmark1673 if I didn't already know how to calculate a p-value, I'm not sure I'd be able to just from that (although I'd at least know where to start looking). (Then again I mostly deal with Bayesian inference and rarely do p-values)
@xonarofficial
@xonarofficial Жыл бұрын
I've never done anything with programming, but still understood almost everything Emery said. Great video!
@microcolonel
@microcolonel 4 жыл бұрын
This is the only helpful performance analysis talk I have ever seen. Spectacular work, and thank you for making the tools available. I think it'd be spectacular to integrate the layout randomization and causal profiling directly into the Rust toolchain, and I can't see why not. Edit: seems somebody has ported or begun porting Coz to Rust, very cool. :- )
@Raintigress
@Raintigress 3 жыл бұрын
Does anyone know what paper he's referring to around 10:35? I can't find it anywhere.
@ianchristensen6319
@ianchristensen6319 5 жыл бұрын
Excellent talk. Informative, engaging, clear.
@seanmacfoy5326
@seanmacfoy5326 2 жыл бұрын
This is one of the best talks I have ever seen, full stop
@JeiShian
@JeiShian 4 жыл бұрын
25:05 "You plug this into R with this awesome incantation" hahaha he's the best speaker eer
@onlyeyeno
@onlyeyeno 2 жыл бұрын
It has all been written before, but in order to "feed the algorithm" let me just concur, this was to me an extremely interesting and in many ways eye opening talk. And the presentation was absolutely "spot on" for my preferences, clear and and to the point, with the perfect "balance" of overview and details, and then some humor for those of us who like that. In short(?) interesting, informative, educational and enjoyable. Best regards
@k98killer
@k98killer 9 ай бұрын
Enlightening talk and amazing results. If only coz existed for every language.
@skilz8098
@skilz8098 2 жыл бұрын
One of the better talks on "Memory Layout" within a given program or application that has a direct effect on Performance. The jokes and puns are great! No more malloc! Run it as me and it's faster... lol! Great content!
@casperes0912
@casperes0912 4 жыл бұрын
This was a bloody amazing speech and great content. Now the coz-profiler just needs to be ported to macOS. If it works on Linux already probably isn't too big a leap.
@notgate2624
@notgate2624 4 жыл бұрын
The best talk I've ever seen. These tools are incredible and I learned a ton. Great job!
@AdamGaffney96
@AdamGaffney96 2 жыл бұрын
As a data scientist I take personal offence to the R slander, but on a serious note this was a great talk and I really enjoyed listening!
@shawn576
@shawn576 2 жыл бұрын
Excellent presentation. Eventually this stuff will be built into Visual Studio and us casual plebs will be guided into making code that isn't awful.
@iyziejane
@iyziejane Жыл бұрын
That anecdote really summarizes the grad school experience. "As your advisor, the code just runs faster for me."
@MartinAndrovich
@MartinAndrovich 4 жыл бұрын
What an excellent talk with an awesome presenter; going to look more into this, kudos!
@GeoffreyChurchilley
@GeoffreyChurchilley 4 жыл бұрын
I really like the causal analysis technique! I might be misunderstanding what "layout" is, but I was confused as to why you would randomize it every .5 seconds. It seems like this could wash out optimizations that are actually valid, e.g. optimizations that reduce the probability of cache misses, because out in the wild layout isn't being randomized all the time. It seems like the fact that you get unexpected distributions when only randomizing once per execution could be indicating that different codes do have different performance characteristics across different layouts, meaning that there are potentially useful code-level optimizations. An extreme example of this could be a data structure that monitors its own timing information and adapts to optimize latency assuming static memory layout, because then randomizing the layout could make that structure look way worse than a more naive approach that doesn't bias itself for any particular layout.
@Megaranator
@Megaranator 2 жыл бұрын
To me it seemed that the point of it is to eliminate any layout optimizations and look purely at the code and then on top of this you can add machine specific or runtime layout optimizations if you need them.
@LaPingvino
@LaPingvino 2 жыл бұрын
the randomization is to remove measurement bias, not to improve performance. you don't do this in the actual program, just while you try to figure out what other than memory layout ( = how the memory access is organized) influences your performance.
@ray30k
@ray30k 2 жыл бұрын
My understanding is that the layout is not randomized, but it's *outside of the developers' control*. So say the layout on your testing machine is just right to get a few small speedups, but you've got one unlucky customer whose layout causes a slowdown once a month or something. By randomizing the layout repeatedly during testing, you can avoid the random advantages and disadvantages and instead get a statistically meaningful test result.
@johaquila
@johaquila 2 жыл бұрын
Regarding 0.5 seconds: Isn't this already very long for this kind of test on modern computers? Using the right kind of algorithm, it's always possible to construct pathological examples that would require running the program for hours before you can compare the times without getting misleading results. But in practically occurring cases, half a second should be plenty, while also being short enough so you can try many iterations. Also, the program that adaptively changes its memory layout is reminiscent of a halting problem construction. That's more of a sophisticated denial of service attack against the performance test, rather than a genuine problem likely to occur in practice.
@Google_Censored_Commenter
@Google_Censored_Commenter 2 жыл бұрын
but the key here is that you can't tell if it's a code improvement of a layout improvement unless you use the stabilizer to randomize the layout. If you want to measure whether you did any optimization to the layout after the fact, just compare the non-stabilized layout to the stabilized one. Nothing is lost.
@nO_d3N1AL
@nO_d3N1AL 4 жыл бұрын
Excellent and engaging presentation with interesting research. Informative and entertaining. If only every conference talk was like this!
@zoulock
@zoulock 4 жыл бұрын
Amazing idea slowing everything down!
@rallokkcaz
@rallokkcaz 4 жыл бұрын
Woah! This is a super awesome talk. Was not expecting as much as I learned.
@MrAwesomesize
@MrAwesomesize 5 жыл бұрын
Truly amazing talk! Seriously great stuff!
@swyxTV
@swyxTV 5 жыл бұрын
i actually LOLed when i saw that hash function profile. and then immediately felt sad that nobody near me would get why this is funny 😂
@donaldhobson8873
@donaldhobson8873 Жыл бұрын
That stabilizer. Instead of randomizing every half second, you could randomize once per test. And then pick the best program. Super optimizing compiler.
@WesleyZeon
@WesleyZeon 4 жыл бұрын
Did you guys try using Coz to enhance the performance of its own code?
@sebastianpopa4778
@sebastianpopa4778 Жыл бұрын
what a brilliant talk - great content, super clarity, funny
@speed488
@speed488 4 жыл бұрын
Very nice! Thanks for the share. I've been through a few pitfalls stated in the presentation.
@JobvanderZwan
@JobvanderZwan 5 жыл бұрын
One thing I'm wondering about: these causal graphs assume that no other variable changes its performance characteristic, right? So wouldn't it be possible that speeding up one bottleneck completely changes the shape of the graphs of all the other ones?
@madtrade
@madtrade 5 жыл бұрын
yes completely ! this is why i reevaluate after each changes. it's specially important when you are using threads
@EmeryBerger
@EmeryBerger 4 жыл бұрын
Right now, Coz tests the effect of a single change. It would also be possible to test the effects of two changes (or more), though this requires an increasingly large number of samples (testing pairs requires O(n^2) experiments, for example).
@jamcdonald120
@jamcdonald120 4 жыл бұрын
if only someone would write a language where -03 picks the fastest data structures to use
@elkino1
@elkino1 4 жыл бұрын
Great talk, biased details about biased measurement layout awesome. The best statistics and performance talk. Crystal clear.
@TristanBailey
@TristanBailey 4 жыл бұрын
Great presentation and even if I never use there software I’ve an idea how to looking my own performance work and how certain limits work. Thank you.
@marcusklaas4088
@marcusklaas4088 5 жыл бұрын
Educational *and* fun! That was great.
@Entropy67
@Entropy67 Жыл бұрын
how insanely useful... I was thinking about the next steps for optimization. This came in at the right time lol
@Antsaboy94
@Antsaboy94 2 жыл бұрын
But we DO have magic! 1) Have set data to run through the program. 2) Run it through the program, saving the results of each individual process. 3) Run it through the program again, skipping different processes by copying pre-calculated results. You can even run the process halfway and only then copy the precalculated results. Anything from minor improvement to infinite speed is possible!
@iCarNaya
@iCarNaya 4 жыл бұрын
Eye opening, thanks!
@antoniogarest7516
@antoniogarest7516 4 жыл бұрын
Very interesting! Great video!
@ffp3
@ffp3 4 жыл бұрын
Great presentation, great material. I've enjoyed watching it a lot, very educational, thanks!
@ittixen
@ittixen 2 жыл бұрын
One of those rare talks that's actually full with useful insights and lessons. I'm not against people rolling their own hash thing at home though 😉
@Daniel_WR_Hart
@Daniel_WR_Hart Жыл бұрын
I noticed once in a C++ project that changing the order of some of my very slow functions consistently improves their performance by 3%. Seeing that kind of made me want to give up coding
@4mb127
@4mb127 4 жыл бұрын
Superb talk.
@AlexanderZeitler
@AlexanderZeitler 4 жыл бұрын
Awesome talk, really enjoyed it!
@ibollanos
@ibollanos 2 жыл бұрын
Extremely interesting and well-presented work!
@willculpepper9637
@willculpepper9637 4 жыл бұрын
30:00 Gahhhh! So obvious in retrospect. That, sir, is some fine lateral thinking.
@termway9845
@termway9845 4 жыл бұрын
Great talk about performance. You illustrate quite well the struggle to optimize a program. I'm curious about all those real examples in you "Summary of Optimisations" slide. Do you have references about them ? (like specific thread or patch note ?)
@shpensive
@shpensive 2 жыл бұрын
Just really brilliant ideas and great execution wow!
@dengan699
@dengan699 4 жыл бұрын
Wow awesome talk, thanks
@haydenthai935
@haydenthai935 2 жыл бұрын
Great speaker
@ewenchan1239
@ewenchan1239 4 жыл бұрын
Great talk!
@TheNefari
@TheNefari 2 жыл бұрын
nothing beats hardware talks and enjoying christmas Have a Great Christmas everybody🎅
@axelforsman1642
@axelforsman1642 4 жыл бұрын
Great talk! Thanks
@movax20h
@movax20h 4 жыл бұрын
The graphs and analysis at 24:20 are flawed. The problem is that -O2 and -O3 actively optimizes the layout, to improve (static) branch prediction and separation of hot and cold code. By using randomizer you throw these optimizations out of the window, so obviously you are going to loose advantage of using these optimizations. The proper way to test is to keep benchmarks well designed, and run in extremal well controlled environment (keep noise to minimum), preferably in a cycle accurate CPU simulator with full cache, prefetch and branch prediction subsystems simulated accurately. Also another aspect is running enough repetitions, and not using average, but to use instead minimums (best possible performance, with removal of noises).
@markusklyver6277
@markusklyver6277 2 жыл бұрын
You can set up what Coz is allowed to randomize.
@markusklyver6277
@markusklyver6277 2 жыл бұрын
Also I think the point of it is to eliminate any layout optimizations and look purely at the code. The randomization is to remove measurement bias, not to improve performance.
@Sarsanoa
@Sarsanoa 2 жыл бұрын
testing the speed of a piece of code by slowing everything else down seems like it would miss interactions between components. It seems like the ferret example required explicit knowledge of interactions in order to discover the optimization.
@JimBob1937
@JimBob1937 2 жыл бұрын
Think of it as running the application on a slower computer, everything is slower globally. However, since this is done virtually, you can virtually speed one component up independently. Since everything, but your isolated component, is running at the same global speed, relative interactions among those components should be preserved. You only need be able to isolate a specific component.
@TheAmos1989
@TheAmos1989 4 жыл бұрын
Fantastic talk!
@World_Theory
@World_Theory 4 жыл бұрын
A “causal profiler”, huh?… I bet that would be useful as a component to building a system that uses an evolutionary algorithm to create a program, or at least, to optimize a program. Specifically, the part that grades the performance score of a unique specimen of code, to decide whether it survives that generation. Then you just need a way to get the random code to do the thing you want, and to get it to avoid or fix bugs. Maybe I shouldn't say “just”, in that sentence…
@4AneR
@4AneR 2 жыл бұрын
Amazing talk!
@benjaminramsey4695
@benjaminramsey4695 2 жыл бұрын
Holy cow, this guy is GOOD!
@williamdrum9899
@williamdrum9899 Жыл бұрын
So basically what you're saying is "you can't reliably measure performance anymore"
@EER0000
@EER0000 4 жыл бұрын
Great talk! I saw there is a version targeting Java available so that gives me hope that some day we will have it for dotnet as well.
@Snakke40
@Snakke40 4 жыл бұрын
The working diagram of the program makes me think of Program evaluation and review technique/critical path analysis of all things. I wonder if the coz analyser is partly inspired by existing ways to "optimise" projects that utilise PERT/CPA. It's probably closely related, though I'm not proficient in any of those, so I could be way off. Good talk though! And very interesting.
@vikx02
@vikx02 2 жыл бұрын
Super interesting!
@xnoreq
@xnoreq 4 жыл бұрын
Sadly both null hypothesis significance testing and the p-value are significantly flawed and the descriptions given in the talk are also wrong. A p-value of 26.4% doesn't mean that 1 in 4 runs will show a random effect. The p-value tells you how probable it is to generate data in some range GIVEN the null hypothesis is true. Yes, you read right. Calculating the p-value already assumes the null hypothesis (no difference) to be true. To conclude from a low resulting probability that the assumed null hypothesis is wrong requires mental gymnastics that frequentists seem to be experts in.
@markusklyver6277
@markusklyver6277 2 жыл бұрын
It means 1 in 4 runs where the null hypothesis is true will show those random effects.
@itsjustaname7311
@itsjustaname7311 Жыл бұрын
25:50 whats it all about with the "dash O1 up to dash O11" thing. I dont actually know what -XX means in the first place. Yould be glad to learn about from you guys!
@alvarorodriguezgomez8716
@alvarorodriguezgomez8716 Жыл бұрын
You are telling the compiler (the program that translates you quasi human programming into 0 and 1s) to have a deeper look into your code and try to see if it can be made faster by exploiting some of the properties of the processor
@mujtabaalam5907
@mujtabaalam5907 2 жыл бұрын
Is there any interest in automatically tweaking layout to optimize runtime?
@williamdrum9899
@williamdrum9899 Жыл бұрын
Reminds me of Z80 Assembly, you can triple the speed you index an array by aligning the array so that the base address ends in 00. Basically you only needed half the pointer to the array
@Netherlands031
@Netherlands031 Жыл бұрын
41:33 a traditional profiler wouldn't have caught those things, how? Shouldn't the operations that make the program slow be the operations that cost a lot of time?
@alert.272
@alert.272 4 жыл бұрын
Hey Dr. Berger if you are still replying, in the graphic at 30:48 it looks like the virtual speedup is done by just putting other processes in a timeout where it completely stops for a while. Is this just an artifact of the graphic? It seems like this would mess with the analysis of competition for resources. Maybe I have the wrong idea in my head, but how can you stretch run-time in each piece in a way to make sure that processes that were happening concurrently before a virtual speedup are still happening at the same time?
@alert.272
@alert.272 4 жыл бұрын
Oh also your work is awesome. I mean a really novel idea and just so thorough. Wow.
@markusklyver6277
@markusklyver6277 2 жыл бұрын
Yes
@IvanGarcia-cx5jm
@IvanGarcia-cx5jm Жыл бұрын
Is it necessary to have the --- in the coz command line? And if it is, is it necessary to name it exclusively with non-alphabetic symbols? It does not seem something I would have in an API if I want to make it intuitive/self-commented/discoverable/usable.
@JohnGunnels
@JohnGunnels 4 жыл бұрын
First class work and presentation, with Prof. Berger's inimitable sense of humor. There are definitely statements made that I need to think about (I don't agree with them 100%, but ... Prof. Berger may well be right and I may well be ... well, "less right"). I think I will "start at the beginning" with: arxiv.org/abs/1608.03676 .
@matju2
@matju2 2 жыл бұрын
BMP didn't even exist in 1984 !
@FunctionGermany
@FunctionGermany 4 жыл бұрын
Could someone point me to a good talk or resource where the -O1, -O2 performance cost thing is explained?
@EmeryBerger
@EmeryBerger 4 жыл бұрын
I'm not sure what you're looking for. The technical paper describing Stabilizer and the performance analysis we conducted is here: people.cs.umass.edu/~emery/pubs/stabilizer-asplos13.pdf
@ChrisFloofyKitsune
@ChrisFloofyKitsune 4 жыл бұрын
They appear to be compiler optimization options. clang.llvm.org/docs/CommandGuide/clang.html#code-generation-options
@tomiesz
@tomiesz 4 жыл бұрын
It's referring to a compiler option, I know it from gcc but probably something similar in others. www.rapidtables.com/code/linux/gcc/gcc-o.html
@KaiserTom
@KaiserTom 4 жыл бұрын
Generally the higher you go, the larger the size of your program, so an -O3 compiled program can be a good size larger than -O1. While the execution speed very usually increases, you also may need to move a lot more instructions and data around the CPU and to and from RAM, which can get expensive at large program sizes. Going from 1MB at -O1 to 1.5MB at -O3 is no big deal usually, since you can store the entire thing in CPU cache regardless. Going from 100MB to 150MB meanwhile means a significantly more amount of time on waiting on RAM to transfer those extra bytes as well as more cache misses since the CPU has try to juggle and predict what portion of the program should be in cache at any point in time, since it can no longer store it all, and increasing size of the program just makes that prediction even worse. Also you have cases where under -O1 an entire function fits in L1 cache and under -O3 that same function doesn't and part of it is forced into L2, leading to the -O1 being much faster in execution despite using slower instructions.
@dukereg
@dukereg 4 жыл бұрын
Am I right to think that both tools are C/C++ only? How easily can the approaches be applied to other languages, programs and systems?
@obviouslynot85
@obviouslynot85 4 жыл бұрын
There is a version of Coz for Java called JCoz.
@sebastianwiesendahl5348
@sebastianwiesendahl5348 4 жыл бұрын
pretty neat
@StephenOwen
@StephenOwen 4 жыл бұрын
This was a cool talk but I think it should have included a description of what A prime, O3, O2, and all of these metrics are. They're mentioned but sound nuanced enough that I feel like I don't understand their importance.
@gajbooks
@gajbooks 4 жыл бұрын
O2 and O3 are just C/C++ compiler optimization options (GCC, Clang, MSVC, etc). O0 means no optimizations are performed, which is useful for debugging, and isn't bad in all scenarios, but sometimes has some really wonky performance effects. The higher the O level, from O1 to O3, the more mangled the assembly looks, but the more optimizations are applied. O3 has a reputation for not actually providing any benefit over O2, and this confirms that. Compiler authors didn't have tools like this to actually check if their "optimizations" were anything more than artifacts, and so they ended up being artifacts.
@obviouslynot85
@obviouslynot85 4 жыл бұрын
Where 'A' is the label identifying one version of code, 'A prime' is simply a label identifying the later version. This is an idiom carried over from mathematics, but otherwise the labels are arbitrary and are not significant beyond this presentation. '-O3' and '-O2' refer to compiler arguments for optimization levels.
@nevokrien95
@nevokrien95 6 ай бұрын
It's not fully independent the execution time at time t depends on some state from time t-1 things like temperature which threads finished first branch prediction etc. So that means ur assumed normality is problematic because u basically Hand wave those away. I feel like directly testing normality and then doing the rest is best
@anug14
@anug14 4 жыл бұрын
Does this work for java?
@EmeryBerger
@EmeryBerger 4 жыл бұрын
There is now an open-source version of Coz for Java! I hope to integrate the tools going forwards. github.com/Decave/JCoz
@1stMusic
@1stMusic 4 жыл бұрын
No, but lookup 'JCoz'
@filip380PL
@filip380PL Жыл бұрын
9:40 why is it magic number?
@alessandroruggiero8932
@alessandroruggiero8932 2 жыл бұрын
What is-o2 or 3
@planktonfun1
@planktonfun1 4 жыл бұрын
Yey optimization!
@ko-Daegu
@ko-Daegu 2 жыл бұрын
27:40 wait does that mean the profiler in Unity engine is not good ?
@WarrenGarabrandt
@WarrenGarabrandt 2 жыл бұрын
Did these performance optimizations get implemented in these projects?
@mohokhachai
@mohokhachai 11 ай бұрын
So how muny function get an adress before reach heaps
@morwar_
@morwar_ 4 жыл бұрын
I couldn't find anything about dedup, what is that?
@MeriaDuck
@MeriaDuck 2 жыл бұрын
11:42 that's a bit (read: quite a bit) bigger than I anticipated.
@valen8560
@valen8560 2 жыл бұрын
bottleneck does make programs slower if you have a bad scheduler or workload distributor.
@Nikoeab
@Nikoeab 4 жыл бұрын
What is the meaning of the "-O3" in this presentation? Edit: Rather, what is the significance of it, and how does it apply to the development process?
@obviouslynot85
@obviouslynot85 4 жыл бұрын
'-O' is a common option for optimization level in program compilers. The argument '3' indicates optimization level 3. Lower numbers mean the compiler will do fewer or less radical optimizations.
@markusklyver6277
@markusklyver6277 2 жыл бұрын
@@obviouslynot85 Also -O9 isn't a thing, that part was a joke.
@jameshogge
@jameshogge 4 жыл бұрын
Couldn't you "stabilise" your program during performance testing by disabling the TLB, cache etc on the test hardware?
@gajbooks
@gajbooks 4 жыл бұрын
Yes, but I'd love you to show me a modern system where literally disabling the concept of virtual memory would go over well. Cache would be even harder to disable, as it is likely hardwired into the processor, and might barely be changable by microcode.
@juzujuzu4555
@juzujuzu4555 3 жыл бұрын
No, because algorithms that take better advantage of caches etc. are the most important aspect of software. Thus if you would eliminate caches, you could have algorithms that never get cache hits be as fast as best dynamic programming algorithms that utilize caches optimally.
@0xCAFEF00D
@0xCAFEF00D 4 жыл бұрын
I love the idea of the second tool. Perhaps I underestimate the first.
@thimowellner7686
@thimowellner7686 4 жыл бұрын
For academic purposes, comparing different algorithmic strategies, this is gold honestly. I'm very happy i found this tool and I'll use it in my master thesis, because just running your implementations x times for graphs is nice but not too sound... Basically i don't really want to spend too much time on the implementation of the algorithm, i just want to make sure that my theoretical conclusions are correct and that they are not *in all cases* nullified by an underlying process of caching or accessing that i haven't considered
@kfftfuftur
@kfftfuftur 4 жыл бұрын
19:00 on average A' is faster however the closer they get the more it depends on the random layout wether they are faster. Why dont you just build the app 30 times on the client with randomized layout and see what works the best?
@EmeryBerger
@EmeryBerger 4 жыл бұрын
I explain this in the talk: any tiny change can easily erase those gains -- even running the code in a different directory or with a different user!
@1889990
@1889990 4 жыл бұрын
Besides that it would just not be practical, even if it had some impact. Just think about building an application 30 times for a single client in a single deployment... if it takes an hour to compile you have 30 hours of compile time. Your next hotfix is probably less than 30 hours away. Since every change of code could impact performance you would need to redeploy after every change and compile again for 30 hours. The Software would have more down than uptime!
@ashrasmun1
@ashrasmun1 4 жыл бұрын
I guess the only "optimization" you could do in that area, is to compile with optimal layout in given directory, for given user etc. and just never touch it. It might be beneficial, but I don't see it getting popular as presented method let's you tackle more important issues.
@whuzzzup
@whuzzzup 2 жыл бұрын
And did SQLite change the code to yours?
@richerite
@richerite 4 жыл бұрын
Is there a similar tool for Python?
@supertren
@supertren 2 жыл бұрын
14:50 OMG
@shaylempert9994
@shaylempert9994 4 жыл бұрын
Great talk! Are there python versions?
@janknoblich4129
@janknoblich4129 4 жыл бұрын
11:49 what does that mean?
@tieswestendorp9830
@tieswestendorp9830 4 жыл бұрын
The -Ox flags are optional compiler flags that determines the 'optimization level' of some compilers (notably GCC: www.rapidtables.com/code/linux/gcc/gcc-o.html). Essentially, the higher x is in -Ox, the more tricks your compiler will try to apply to optimize your code.
"Stop Writing Dead Programs" by Jack Rusher (Strange Loop 2022)
43:04
Strange Loop Conference
Рет қаралды 435 М.
"Python Performance Matters" by Emery Berger (Strange Loop 2022)
38:51
Strange Loop Conference
Рет қаралды 78 М.
Schoolboy Runaway в реальной жизни🤣@onLI_gAmeS
00:31
МишАня
Рет қаралды 3,1 МЛН
黑天使遇到什么了?#short #angel #clown
00:34
Super Beauty team
Рет қаралды 44 МЛН
ПОМОГЛА НАЗЫВАЕТСЯ😂
00:20
Chapitosiki
Рет қаралды 28 МЛН
"Finding bugs without running or even looking at code" by Jay Parlar
40:27
Strange Loop Conference
Рет қаралды 38 М.
"Probabilistic scripts for automating common-sense tasks" by Alexander Lew
36:21
Strange Loop Conference
Рет қаралды 74 М.
"Game Development in Eight Bits" by Kevin Zurawel
39:41
Strange Loop Conference
Рет қаралды 538 М.
"The Mess We're In" by Joe Armstrong
45:50
Strange Loop Conference
Рет қаралды 379 М.
"Type-Driven API Design in Rust" by Will Crichton
40:57
Strange Loop Conference
Рет қаралды 120 М.
The Only Unbreakable Law
53:25
Molly Rocket
Рет қаралды 324 М.
Why Isn't Functional Programming the Norm? - Richard Feldman
46:09
"Propositions as Types" by Philip Wadler
42:43
Strange Loop Conference
Рет қаралды 127 М.
"Outperforming Imperative with Pure Functional Languages" by Richard Feldman
34:55
Strange Loop Conference
Рет қаралды 87 М.
Schoolboy Runaway в реальной жизни🤣@onLI_gAmeS
00:31
МишАня
Рет қаралды 3,1 МЛН