КОМЕНТАРІ
@sergeykholkhunov1888
@sergeykholkhunov1888 3 години тому
Wait a minute, how does this speed up algorithms?)
@joshmckay973
@joshmckay973 День тому
For that “what the fuck” line in the fast inverse square root code, 0x5f3759df is equal to (-0.233108f >> 1). I’m not sure what -0.233108 is though
@bourhinorc1421
@bourhinorc1421 День тому
Will you participate to the unofficial #SoMEpi?
@YuanyangLee-jn8gj
@YuanyangLee-jn8gj 4 дні тому
Very clear and amazing representation of quick inverse square root algorithm, but I do believe that your demo code would be better if you give an alias to 0x5f3759df 😂
@BaileybirdGNO
@BaileybirdGNO 5 днів тому
This is knot theory
@matteofalduto766
@matteofalduto766 6 днів тому
When you unknowingly hire an alien in your developer team
@adennis200
@adennis200 7 днів тому
Ok so let me get it straight: The reason why we apply the log to a number is to get a more or less accurate bit representation of it?
@mahdiqaempanah5844
@mahdiqaempanah5844 7 днів тому
I hope you're doing well
@smithwillnot
@smithwillnot 7 днів тому
Still waiting for part 2 so I can use it to solve Rubik's cube I'm gonna cry if his example is Rubik's cube.
@Chiavaccio
@Chiavaccio 9 днів тому
👍👍👍
@NapoDEf
@NapoDEf 12 днів тому
Made it to 7 minutes. Goodbye.
@JoeDoe1
@JoeDoe1 13 днів тому
Thank you.
@craigsmith3645
@craigsmith3645 15 днів тому
This was fantastic! It also shows why C is still around, and will continue for a long time. You can do things with C that aren't easily possible with any other language.
@jokkadread
@jokkadread 16 днів тому
i dont know what else to say C just works that way..... it pretty much sums it up
@johnmckown1267
@johnmckown1267 16 днів тому
I might have defined a union to overlay the long and float in memory
@teraxiel
@teraxiel 18 днів тому
wow
@gaetanlesingechannel9496
@gaetanlesingechannel9496 20 днів тому
i love your videos dude
@___-._.-___
@___-._.-___ 20 днів тому
best explanation I have seen on IEEE-754 , I understood more in those 5 min than my prof's 1hr lecture
@wolcamophone4783
@wolcamophone4783 22 дні тому
I started my freshman year in an 8 week course for Intermediate Algebra and got to have fun talking with the tutors in the library over the more nerdy high-concept math bits I wanted to eventually try studying for my game. This was brought up as a discussion and I still don't quite get it. On top of this though, computers are way better than they were back then so we typically don't focus on micro-optimizing like this anymore, but it's still good to be conscious of as opposed to the current generation that is cosying into the idea that machines just do everything for you with one push of a button and that being slow is just something we either deal with or splurge to upgrade our rig.
@banhminuongmuoiot
@banhminuongmuoiot 23 дні тому
Bro, your videos are incredible!!! Can’t wait for the next ones
@user-zu4ft8yw9e
@user-zu4ft8yw9e 24 дні тому
The Fast Inverse Square Root algorithm used in Quake III is a method to approximate the inverse square root of a number without using division or square roots. It involves a bit manipulation technique that reinterprets the bits of the floating-point input as an integer. This algorithm was significant in the 90s for its efficiency in computing the reciprocal of a floating-point number, especially for vector normalization and other mathematical operations in 3D graphics rendering.
@brightblackhole2442
@brightblackhole2442 23 дні тому
hi chatgpt, please write a python program to encrypt the user's email and password with rot13
@arjunsigdel8070
@arjunsigdel8070 24 дні тому
What is the name of the professor you mentioned in beginning of video? Can you give link to his video?
@Nemean
@Nemean 22 дні тому
He's Laszlo Babai and the talk is in the description
@kerbodynamicx472
@kerbodynamicx472 25 днів тому
I’m learning C programming in an engineering course, and I showed this video to the professor. He said these clever tricks are written by people with deep insights and too much time on their hands. He also warned me against using those forbidden techniques …
@mcflurry8743
@mcflurry8743 23 дні тому
He’s right
@deepskyfrontier
@deepskyfrontier 27 днів тому
You didn’t take variations due to handedness into account.
@jamiemarshall8284
@jamiemarshall8284 27 днів тому
This is a good primer, but fails to explain critical things.
@andreasnarum
@andreasnarum 28 днів тому
Great example to show older kids why they need maths
@stacksmasherninja7266
@stacksmasherninja7266 28 днів тому
well you gotta show up and do the graph isomorphism using groups now
@iannalemme
@iannalemme 28 днів тому
i took a bit operation course in first year of computer science and understood it but was always wondering why would we need it in true applications. NOW IT MAKES SENSE!
@ilnurkhamidullin6133
@ilnurkhamidullin6133 29 днів тому
This mf-er, I just wanted to hear damned algorithm😂😂
@ilnurkhamidullin6133
@ilnurkhamidullin6133 29 днів тому
Yo, bro naturally dropped the group theory intro. I am comp.sci and math student, was so interested in algorithm, but damn, over 20 minutes of math.. I wasn't ready for that:) Ps. That all is just the first half of the first course, further is much darker... But I am happy that some people have such a great vid to have a great start. Keep it up!
@874D8
@874D8 29 днів тому
amazing stuff than you!
@matthewboyer4212
@matthewboyer4212 Місяць тому
This is why I think I'm bad at programming.
@6andrewalaniz9
@6andrewalaniz9 Місяць тому
Inverse sq is log
@zhabiboss
@zhabiboss Місяць тому
Bro why define threehalfs and then not define mu
@koksem
@koksem Місяць тому
I wonder why they chose u = 0.043 exactly. I have calculated the area under f(x) = log2(x+1) - (x+u) in the [0,1] interval and equaled it to 0. I came up with u = 0.057304959111 for the minimum area. Also I coded up a quick c program to check the average gap between log2(x+1) and (x+u) without any fancy math, just iteration between 0 and 1 with 100,000 points. for u = 0 the average gap was 0.057305, for u = 0.043 the average gap was 0.0262259 for u = 0.057304959111 the average gap was 0.022115 clearly u = 0.0573 is better on average, so I wonder why they opted for 0.043. Anyone knows?
@ytbvdshrtnr
@ytbvdshrtnr Місяць тому
I had some trouble understanding the difference between elements and operations at 13:40. It seemed you had said before that "flipped 300", "flipped 0", etc were their own elements, but when verifying they were a group under "chaining", it seemed you showed "flip" as its own element (the double arrow, given as its own inverse in the last line). Or, when you use "flip" (the double arrow) in the last line, does it carry an implied "neutral", so it's "flip neutral" (double arrow gold)? You then demonstrated that to flip and then rotate is not the same as to rotate and then flip, again treating "flip" as an element. Here I have the same question again, is "flip" shorthand for the "flip neutral" element? (Or is there a typo, or is there something I'm misunderstanding about flips/rotations as operations vs as elements)
@SomebodythatIusetoknow123
@SomebodythatIusetoknow123 Місяць тому
out of this world
@aqqalularsen3322
@aqqalularsen3322 Місяць тому
wait so technically we can do division with just using x*Q_rsqrt(y*y) instead of x/y, why? because i'm too lazy and can't find any good division hardware for my project
@lih3391
@lih3391 Місяць тому
Best explanation I've heard! Thank you for not dumbing it down or overcomplicating so that we actually progress at a decent pace!
@orvilleredenpiller338
@orvilleredenpiller338 Місяць тому
“Why is there a disgusting curse word in the second comment?” Where?
@ILostMyOreos
@ILostMyOreos Місяць тому
I effing love old computer stuff
@DarkoLuketic
@DarkoLuketic Місяць тому
Downvoted for ads
@aurelia8028
@aurelia8028 Місяць тому
"disgusting curse word" dude, are you some sort of puritan. is you little frail heart too sensitive for words such as Fuck! Shιt!! Bιtch etc.?
@brightblackhole2442
@brightblackhole2442 23 дні тому
weird how you didn't actually say the latter two words. in any case, i have blocked, muted, and reported you to youtube for obscene language, flagged your google account, submitted an anonymous tip to the government, and sent your wiretapped address to the nearest swat team
@finminder2928
@finminder2928 Місяць тому
How long would it take to multiply two numbers with 2^1729^12 digits?
@KateYagi
@KateYagi Місяць тому
4:09 Oh god there's probably kids out there whose first introduction to cryptography as a concept was through the language of cryptocurrency schemes.
@kmjohnny
@kmjohnny Місяць тому
This video made me very interested in Group Theory, and making it's sequel my most anticipated YT video as of today.
@xanderlastname3281
@xanderlastname3281 Місяць тому
I remember making a comment a while ago asking "ok but is this actually faster than just doing an inverse square root" (It must be otherwise it wouldnt have the name) And then someone responded asking "ok but how do you think conputers do squareroots? Unfortunately since i dont know where that comment is I cant reply to it, but my answer is "Well obviously not like this otherwise it wouldnt have needed to be coded"
@Master-cf2vl
@Master-cf2vl Місяць тому
Nice profile picture.
@razorree
@razorree Місяць тому
well... imagine that FPU with floating point divisions came just in intel 80486DX ! before you could buy extra co-processor (for 386 motherboards for example).
@usienwkdau2jfb28u4b
@usienwkdau2jfb28u4b Місяць тому
assembly is the reason for all of this imo….carmack was part of that generation of assembly programmers
@inriinriinriinriinri
@inriinriinriinriinri 2 місяці тому
the only I understood is the what the fuck bit.