5 (Extreme) Performance Tips in C#

2024 ж. 12 Мам.
72 007 Рет қаралды

In this video, I'm going to show you 5 performance tips (or tricks) that you can apply in order to make your C# code run faster.
Everest Photo by Mário Simoes
Attribution 2.0 Generic (CC BY 2.0): creativecommons.org/licenses/...
flic.kr/p/HB3Ya6
♦ Instagram: / level_uppp01
♦ Twitter: / badamczewski01
♦ Blog: leveluppp.ghost.io
#csharp #dotnet #dotnetcore #performance #internals #optimizations

Пікірлер
  • Do you know any other tips that wasn't mention in this video? @Gilad Freidkin has provided a couple interesting ones as well.

    @LevelUppp@LevelUppp3 жыл бұрын
  • OK so the trick is to have a longer method name!

    @powernemo@powernemo3 жыл бұрын
    • That way, compiler knows that is has to optimize it harder! jk :-)

      @igorthelight@igorthelight2 жыл бұрын
  • Conclusion: Try to remove branches from loops. And maybe~ use unsafe code Everything else was too minor to pollute a nice codebase

    @GnomeEU@GnomeEU2 жыл бұрын
    • which tbh is kinda sad because more branches often makes for cleaner code

      @stijnotten5308@stijnotten5308 Жыл бұрын
  • There's a potentially faster version of your no-multiplication bit hacks: // For n-bit integers, use a shift of (n-1) counter += value & (value & 1) > 31; To explain it, I'll use 8-bit integers for brevity: 1. (value & 1): is the value odd? 2. > 31: perform a sign-extending(!) shift to the right, essentially creating a move mask 4. value &: use the move mask to either zero out or keep the value It'll look something like this: Value: 5 1. (0b00000101 & 1) = 1 2. 1 > 7 = 0b11111111 4. 0b00000101 & 0b11111111 = 5 Value: 6 1. (0b00000110 & 1) = 0 2. 0 > 7 = 0 4. 6 & 0 = 0 This method eliminates not only the multiplication, but also the subtraction. Would be interested to see if it's actually faster, though

    @Zooiest@Zooiest10 ай бұрын
  • The most extreme performance tip. Shut down your computer and go climb Mount Everest.

    @SmartK8@SmartK83 жыл бұрын
  • @LevelUp would love to see those simd instructions and other tricks in a new video :) Thanks for showing these tricks!

    @jetersen@jetersen2 жыл бұрын
  • Awesome man, I learned a bunch!

    @nmillard@nmillard3 жыл бұрын
  • Good video thanks. By the way your loop will throw an error if your array has odd length. Therefore instead of write i < array.length ; i +=2; you should write i < array.length - 1; i += 2

    @TheHackhell@TheHackhell3 жыл бұрын
    • Same issue with the last parallelization improvement where array.Length % 4 != 0

      @ClAddict@ClAddict3 жыл бұрын
    • I have seen .leght -1 and always wondered what was the reason behind it.

      @aikou2886@aikou28862 жыл бұрын
    • That would exclude the last element in the array from being calculated. Worse, the element couldn't be accessed since an exception is thrown when there is no element (as you pointed out) for odd lengths.

      @Mythran101@Mythran101 Жыл бұрын
  • Wow thank you so much, all solid performance tips, cheers

    @mumk@mumk4 ай бұрын
  • Awesome! Thanks!!!

    @vmamore@vmamore3 жыл бұрын
  • I always see "boolAsInt * something" where "-boolAsInt & something" is twice as fast. 0 or 1 times something is the same as -0 = 0x0000_0000 or -1 = 0xFFFF_FFFF AND something. Code size and register dependencies increase (the latter doesn't really count when it replaces an operation that takes long, like multiplying ints at ~ 4 clock ticks, which also has low throughput) so that might matter. Your bit hack is slower than a multiply because bit shifting by a non compile time constant is pretty slow (up to 7 clock ticks) and it only works with ONE particular register with X86, being CL (=> no ILP).

    @47Mortuus@47Mortuus2 жыл бұрын
  • Amazing! Next level knowledge

    @craigmunday3707@craigmunday37072 жыл бұрын
    • Yep! It's basically, applying Assembler (x86) knowledge to C# programming. Sounds crazy, but it works! :-)

      @igorthelight@igorthelight2 жыл бұрын
  • What performance profiling tool did you use?

    @yadercoca3486@yadercoca34862 жыл бұрын
  • Great, you deserve like

    @InshuMussu@InshuMussu2 жыл бұрын
  • Is using span similar to using the pointer?

    @Ruchir205@Ruchir205 Жыл бұрын
  • thanks for the video, -Isn't it a waste of time to use var type even though you know the type of the variable? (it should waste time for finding type) -what will happen if your array has 7 elements, your parallism in loop will be out of the array is it?

    @caglarcansarikaya1550@caglarcansarikaya15503 жыл бұрын
    • 'var' doesn't actually waste any time during runtime, as the type is determined at compile time. That's why you can only use it when the type is known. So its only use is if you're lazy and don't want to write a big type name

      @Daniel-rm3nw@Daniel-rm3nw2 жыл бұрын
  • Sorry for this very noob question. @6:33 if the values of oddA and oddB can both only be 1 or 0, then why do our counters need to be added by the strange values (oddA * elementA) and (oddB * elementB)? If we're just counting how many odd numbers are in the array couldn't we just write counterA += elementA & 1; and counterB += elementB & 1; ? I don't use bitwise logic in the code that I write and I also have never considered ports, registers or memory addresses, so please understand that I'm swimming in water that's over my head here, and thank you for the very interesting video. PS~ I _LOVE_ that parallelism trick and I know of at least one spot in my code base where I think I can make use of it, thanks!

    @matthewexline6589@matthewexline65892 жыл бұрын
    • We are doing sums here, not counting how many odd or even elements we have this is a sum of elements.

      @LevelUppp@LevelUppp2 жыл бұрын
    • He does it because if oddA or oddB equals 0, then that means the number at that index is even. That will make it be multiplied by zero so its not added to the final sum of the function.

      @seegreen6484@seegreen6484 Жыл бұрын
  • for (int i = 0; i < array.Length; i += 2) sum += array[i];

    @HikingUtah@HikingUtah7 ай бұрын
  • Thanks for the awesome video. I would love to see an artful graph at the end, especially as you have "code | art" as your motto.

    @my_temporary_name@my_temporary_name3 жыл бұрын
  • @LevelUp Would you please create video series on data structures and algorithms????

    @hanyelgabry1597@hanyelgabry15973 жыл бұрын
    • Which ones would you like to see?

      @Vizzard@Vizzard3 жыл бұрын
    • Bartosz Adamczewski all data structures in C# and world class example that utilize them plus most used algorithms and how to design new ones and as extra bonus machine learning and AI which use them heavily 😍

      @hanyelgabry1597@hanyelgabry15973 жыл бұрын
  • My boss says my brain don't work too good. He has replaced me with a gorilla. An actual gorilla. We'll see how that works out. anyways, good video. I'm also a bit concerned if these optimizations are dependable? like will they yield the correct results every time? are there performace overhead?

    @ventricity@ventricity3 жыл бұрын
  • Don't most compilers which optimize already do most all of this stuff (like unwrapping for loops)?

    @JJCUBER@JJCUBER3 жыл бұрын
    • Not in dotnet

      @LevelUppp@LevelUppp3 жыл бұрын
    • @@LevelUppp sorry I was thinking about C++, I’ve been working with it a lot lately. I wonder if modifying the optimization in build settings can do some of these optimizations though.

      @JJCUBER@JJCUBER3 жыл бұрын
    • @@JJCUBER Sadly, C# only have one optimization option (Optimize code - true/false). But you still can use raw pointers and reference so you could optimize it a little bit more (unlike in Java as far as I know).

      @igorthelight@igorthelight2 жыл бұрын
  • ahh back to C yeah good But how are you sure that the instructions are run in parallel when you did not specify that? It looks like CUDA for C for me but there I knew it's parallel, but this looks like synchronous CPU code so how did it simply run in parallel for no reason?

    @S3Kglitches@S3Kglitches2 жыл бұрын
    • CPU instructions can run on multiple ports and each instruction has a set of ports that it can run on.

      @LevelUppp@LevelUppp2 жыл бұрын
    • @@LevelUppp nice to know! I actually never heard of CPU ports although studying computer science. I thought there is 1 instruction per thread and it only can predict instructions or do some special vector operations but I didn't know that you can do multiple operations in 1 thread simultaneously

      @S3Kglitches@S3Kglitches2 жыл бұрын
  • Where do you learn such things ? What was your learning path on thing topic?

    @openroomxyz@openroomxyz3 жыл бұрын
    • Experimentation mostly, and messing around with internals of the platform.

      @LevelUppp@LevelUppp3 жыл бұрын
  • Great performance tips. How about : 1^2 =1 2^2 =1+3 3^2 = 1+3+5 ... Sorry if I formulate this wrong: Sum of x odd= (x//2 + x%2)^2

    @javiermunoz8809@javiermunoz88092 жыл бұрын
    • Smart man!

      @paulblart4551@paulblart4551 Жыл бұрын
  • So I'm not completely through it yet, but the very first thing I thought of was parallelizing it. Disregard, just got to it in this video, and was really great to see, so definite thanks!

    @aurinator@aurinator2 жыл бұрын
  • please tell about the stack in c#, how work it?

    @thisdaulet9059@thisdaulet90593 жыл бұрын
    • Sure I'll make a video about the stack.

      @LevelUppp@LevelUppp3 жыл бұрын
  • In fact, we rarely use Array in real world. Furthermore we can use multitasking for CPU-bound tasks or asynchronous for I/O-bound tasks to improve performance

    @NTTCode@NTTCode Жыл бұрын
    • you should use array as much as possible.

      @7th_CAV_Trooper@7th_CAV_Trooper Жыл бұрын
    • We use arrays as much as possible, it's the fastest possible collection. Or ImmutableArray if we need the readonly part.

      @DjoumyDjoums@DjoumyDjoums Жыл бұрын
    • Who's this "we"? Of course programmers use a TON of arrays.

      @antonio_carvalho@antonio_carvalho Жыл бұрын
  • Awesome. Hello. I am following you for a while. I have a youtube channel too. Can i convert to my language and give reference to this video(like scientific papers :))?

    3 жыл бұрын
    • You can reference the video

      @LevelUppp@LevelUppp3 жыл бұрын
  • Perhaps branch-free is my biggest takeaway

    @DoorThief@DoorThief2 жыл бұрын
  • I am not sure but this can use case for SIMD intrinsics

    @sumitmore4680@sumitmore46803 жыл бұрын
    • Yes that would be much faster.

      @LevelUppp@LevelUppp3 жыл бұрын
  • I didn't know that Sam from LOTR knows C# XD :D

    @dawidknaz5855@dawidknaz585511 ай бұрын
  • Doesn't the compiler do most of this when you run in release mode?

    @TheMusterionOfRock@TheMusterionOfRock3 жыл бұрын
    • No

      @Vizzard@Vizzard3 жыл бұрын
    • No, the compiler is a dummy 🙂

      @LevelUppp@LevelUppp3 жыл бұрын
    • Is this just for C#? Because in C++ for example, the optimization compiler has become quite sophisticated

      @TheMusterionOfRock@TheMusterionOfRock3 жыл бұрын
    • @@TheMusterionOfRock Correct it's for C#, C++ has a much better compiler both GCC and Clang.

      @LevelUppp@LevelUppp3 жыл бұрын
  • after spending time in the LeetCode Community, always force a HashMap at the problem🤣🤣

    @panic_seller@panic_seller8 ай бұрын
  • Results for each tip you are running is different it seems. Why is it so?

    @sandeeppote7698@sandeeppote76983 жыл бұрын
    • I'm testing one thing at the time. With each tip so I'm not running old tips.

      @LevelUppp@LevelUppp3 жыл бұрын
  • It will be expensive p+=4; than p=p+4; What do you think?

    @nurullahkaratas4120@nurullahkaratas41202 жыл бұрын
    • There should be no difference

      @LevelUppp@LevelUppp2 жыл бұрын
    • @@LevelUppp I watch a video about expancy of += statement. I will share with you.

      @nurullahkaratas4120@nurullahkaratas41202 жыл бұрын
  • Is this source code posted anywhere?

    @GuildOfCalamity@GuildOfCalamity3 жыл бұрын
    • Here is a source (a little bit improved): using System; using System.Diagnostics; class Program { static void Main() { int[] array = new int[40000000]; Random r = new Random(); for (int i = 0; i < array.Length; i++) array[i] = r.Next(int.MinValue, int.MaxValue); int count; Stopwatch sw = new Stopwatch(); sw.Start(); // Debug = 462 ms; Release = 218 ms //count = SumOdd(array); // Debug = 294 ms; Release = 123 ms //count = SumOdd_Bit(array); // Debug = 111 ms; Release = 19 ms //count = SumOdd_Bit_Branchless(array); // Debug = 85 ms; Release = 30 ms //count = SumOdd_Bit_Branchless_Parallel(array); // Debug = 83 ms; Release = 65 ms //count = SumOdd_Bit_Branchless_Parallel_NoMult(array); // Debug = 55 ms; Release = 28 ms //count = SumOdd_Bit_Branchless_Parallel_NoChecks(array); // Debug = 41 ms; Release = 16 ms count = SumOdd_Bit_Branchless_Parallel_NoChecks_4Ports(array); // Debug = 43 ms; Release = 17 ms //count = SumOdd_Bit_Branchless_Parallel_NoChecks_4Ports_BetterPorts(array); // Debug = 46 ms; Release = 19 ms //count = SumOdd_Bit_Branchless_Parallel_NoChecks_4Ports_BetterPorts_NoMult(array); sw.Stop(); Console.WriteLine($"{count} it took {sw.ElapsedMilliseconds} ms"); Console.ReadKey(); } static int SumOdd(int[] array) { int counter = 0; for (int i = 0; i < array.Length; i++) { int element = array[i]; if (element % 2 != 0) counter += element; } return counter; } static int SumOdd_Bit(int[] array) { int counter = 0; for (int i = 0; i < array.Length; i++) { int element = array[i]; if ((element & 1) == 1) counter += element; } return counter; } static int SumOdd_Bit_Branchless(int[] array) { int counter = 0; for (int i = 0; i < array.Length; i++) { int element = array[i]; int odd = element & 1; counter += odd * element; } return counter; } static int SumOdd_Bit_Branchless_Parallel(int[] array) { int counterA = 0; int counterB = 0; for (int i = 0; i < array.Length; i+=2) { int elementA = array[i]; int elementB = array[i + 1]; int oddA = elementA & 1; int oddB = elementB & 1; counterA += oddA * elementA; counterB += oddB * elementB; } return counterA + counterB; } static int SumOdd_Bit_Branchless_Parallel_NoMult(int[] array) { int counterA = 0; int counterB = 0; for (int i = 0; i < array.Length; i += 2) { int elementA = array[i]; int elementB = array[i + 1]; counterA += (elementA

      @igorthelight@igorthelight2 жыл бұрын
  • .NET 6 compiler will do the first optimization along with many others automatically

    @pierwszywolnynick@pierwszywolnynick2 жыл бұрын
    • For this entire lecture, it will just handle the first case; many other trivial cases are still left unsolved :( The compiler will never solve all of your problems for you.

      @LevelUppp@LevelUppp2 жыл бұрын
  • To be honest the majority of difference are made solely by array bounds checks (40%) and removing branching (80%). The rest are cool, but not as spectacular. Subsribiditized. Your chanel seems amazing place to start being more aware of what our code is actually doing.

    @mastermati773@mastermati7732 жыл бұрын
  • How to achieve high performance in C# : Rewrite it in C++

    @orterves@orterves Жыл бұрын
    • Most developers will end up with worse performance in C++ because they can't even perform fundamental optimization in C#.

      @7th_CAV_Trooper@7th_CAV_Trooper Жыл бұрын
  • You're ruining readability, but atleast its a second faster

    @FriedMonkey362@FriedMonkey3628 ай бұрын
  • I have no idea what any of this means, clearly I'm still too green

    @anonymoususer3561@anonymoususer3561 Жыл бұрын
  • There's a point where readability is worth more than a tiny bit of performance

    @MHjort9@MHjort9 Жыл бұрын
    • the point of writing high performance code is to flex in front of your teammates.

      @7th_CAV_Trooper@7th_CAV_Trooper Жыл бұрын
  • Why not just use C for performance? Code readability is more important than extra 30 milliseconds

    @native-nature-video@native-nature-video7 ай бұрын
  • Any use at this in a real word use case. Also if you really wants perfomance in this you can use: var sum = n/2 * ( 2*a + ( n - 1 )* d );

    @Junior.Nascimento@Junior.Nascimento Жыл бұрын
KZhead