Arm vs x86 - Key Differences Explained

  Переглядів 373,965

Gary Explains

Gary Explains

3 роки тому

With Apple moving away from Intel and making its own CPUs based on the Arm architecture, it is important to understand the differences in the history, architecture, and design philosophies between these two giants.
History of x86 - 0:28
History of Arm - 3:56
History of Apple using Arm - 7:45
Differences - 11:40
CISC vs RISC - 13:30
False Assumptions - 16:07
Future - 19:05
What is virtual memory? - • What is virtual memory...
RISC vs CISC - • RISC vs CISC - Is it S...
Instructions per cycle - • Instructions per cycle...
Introduction to Android app development: www.dgitacademy.com
Let Me Explain T-shirt: teespring.com/gary-explains-l...
Twitter: / garyexplains
Instagram: / garyexplains
#garyexplains

КОМЕНТАРІ: 917
@GaryExplains
@GaryExplains 3 роки тому
I also recommend this written article about this topic: Arm vs x86: Instruction sets, architecture, and all key differences explained - www.androidauthority.com/arm-vs-x86-key-differences-explained-568718/
@dalezapple2493
@dalezapple2493 3 роки тому
Learned a lot Gary thanks 😊...
@Yusufyusuf-lh3dw
@Yusufyusuf-lh3dw 3 роки тому
@Z3U5 why would that be a big boon to the industry, considering the fact that Apple want to create a large propietory ecosystem that tries to hide everything from everyone including the cpu specs, capabilities and associated technology. Apple is like the boogie man trying to steal the future of computing. But I'm sure they will reach where they where in the 90s
@Yusufyusuf-lh3dw
@Yusufyusuf-lh3dw 3 роки тому
@Z3U5 yes. There are multiple different use cases in the server market and ARM fits into a few of those. If you look at historic data in server segment market share it's not 100% X86 or Power CPUs. There are small % of other architectures. There are even Intel Atom based servers. But the argument that Arm is going to capture huge server market share is totally unrealistic.
@MozartificeR
@MozartificeR 3 роки тому
Is it difficult for a company to recompile an app into risc?
@HungryGuyStories
@HungryGuyStories 3 роки тому
Thank you for the informative video! But why, WHY, *_WHY_* does almost every UKpostsr hate their viewers ears?!?!?!
@xcoder1122
@xcoder1122 2 роки тому
The biggest problem that x86 has are its strong guarantees. Every CPU architecture gives programmers implicit grantees. If they require guarantees beyond that, they have to explicitly request those or work around the fact that they are not available. Having lots of guarantees makes writing software much easier but at the same time causes a problem for multicore CPUs. That's because all guarantees must be uphold across all cores, no matter how many there are. This puts an increasingly amount of burden on the bus that interconnects the single cores, as well as any shared caches between them. The guarantees that ARM gives are much weaker (just as the ones of PPC and RISC-V are much weaker), which makes it much easier so scale those CPUs to a bigger amount of cores, without requiring a bus system that needs to become drastically fast or drastically complex, as such a bus system will draw more and more power and at some point become the bottleneck of the entire CPU. And this is something Intel and AMD cannot change for x86, not without breaking all backward compatibility with existing code. Now as for what "guarantees" actually means, let me give you some examples: If one core writes data first to address A and then to address B and another core monitors address B and sees it has changed, will it also see that A has changed? Is it guaranteed that other cores see write actions in the same order they were performed by some core? Do cores even perform write actions in any specific order to begin with? How do write actions and read actions sort towards each other across cores? Do they sort at all? Are some, all, or none of write actions atomic? Over 99% of the time none of these questions matter to code that you write, yet even though less than 1% of all code needs to know the answers to these questions, the CPU has to stick to whatever it promises 100% of the time. So the less it promises, the easier for the CPU to keep it and the less work must be invested into keeping it. When Microsoft switched from x86 in the fist Xbox to PPC in the Xbox360, a lot of code broke because that code was not legit in the first place. The only reason why this code was working correctly so far were the strong guarantees of the x86 architecture. With PPC having weaker guarantees, this code would only work sometimes on these CPUs, causing very subtle, hard to trace bugs. Only when programmers correctly applied atomic operations and memory barriers, as well as used guarded data access (e.g. using mutexes or semaphores), the code was still working correctly as when using these, the compiler understands exactly which guarantees your code needs to be correct, and knowing for which CPU you are compiling, it also knows whether it has to do something to make your code work correctly or whether it will work correctly "on its own" as the CPU gives enough guarantees for that, in which case the compiler will do nothing. I see code every second day that only works coincidentally as it's being used on a CPU that has certain guarantees but this very same code would fail on other CPUs for sure. At least if they have multiple cores, there are multiple CPUs in the system, or the CPU executes code in parallel as if there were multiple cores (think of hyper-threading). The guarantees of x86 were no issue when CPUs had a single core and systems had a single CPU but they increasingly become an issue with the number of cores rising. Of course, there are server x86 CPUs with a huge number of cores but take a look at their bus diagrams. Notice how much more complex their bus systems are compared to the consumer x86 CPUs? And this is an issue if you want fast CPUs with many cores running at low power, providing long battery life and not requiring a complex cooling system or otherwise will run at very high temperature. And cores is currently the easiest way to scale CPUs, as making the cores run at higher speed is much harder (the clock frequency of CPUs is currently usually below what it used to be before all CPUs got multicore) and it's even harder to make the CPU faster without raising clock frequency and adding more cores as most optimizations possible have already been done. That's why vendors need to resort to all kind of trickery to get more speed out of virtually nothing and these tricks causes other issues, like security issues. Think of Meltdown, Spectre, and Spectre-NG. These attacks used flaws in the way how optimizations were implemented to make CPUs faster without actually making them faster, e.g. by using speculative execution, so the CPU is not faster but it still can perform work when it otherwise couldn't and it it was doing the work correctly, it appears to be faster. If what it has just done turns out to be wrong, though, it had to rollback what it just did and this rollback was imperfect as they didn't clean up the cache, thinking that nobody can look directly into it anyway, so why would that matter? But that assumption was wrong. By abusing another of these tricks to make CPUs faster, branch prediction, it is possible to reveal what is currently cached and what isn't and that way software can get access to memory it should never have access to. So I think the days of x86 are counted. It will not die tomorrow but it will eventually die as in many aspects x86 is inferior to ARM and RISC-V who both give you more computational power for less money and less electric power and this is not a temporarily thing, as no matter what trickery and shrinking they are going to apply make x86 faster, the same trickery and shrinking can also be applied to ARM and RISC-V to make them faster as well, yet on top of that, it will always be easier to give them more cores as well and that's why they keep winning in the long term.
@tvthecat
@tvthecat 2 роки тому
Did you just type a fucking novel right here?
@dariosucevac7623
@dariosucevac7623 2 роки тому
Why does this only have 26 likes? This is amazing.
@lachmed
@lachmed 2 роки тому
This was such a great read. Thanks for taking time to write this!
@jamesyu5212
@jamesyu5212 Рік тому
There are so many things wrong in this comment that I’m glad it’s not gotten a lot of likes. Thank God people learn to do actual research than agree to unverified claims in the comments section.
@xcoder1122
@xcoder1122 Рік тому
@@jamesyu5212 People especially need to stop listening to comments that simply make blanket claims of anything being wrong without naming a single specific point that is supposed to be wrong or refuting even a single point. Who says sweepingly, something is wrong, which has ultimately said nothing and can save his know-it-all comment in the future just the same, because apparently he knows nothing, otherwise he would give something concrete from him.
@zer0legend109
@zer0legend109 3 роки тому
I stopped midway saying to myself, why I feel like I was tricked into a college lecture and not noticing it except midway but still liking it
@SH1xmmY
@SH1xmmY 3 роки тому
You are not alone
@rhemtro
@rhemtro 2 роки тому
doesn't even feel like a college lecture
@batmanonabike3119
@batmanonabike3119 2 роки тому
Wait… clandestinely educating us? Cheeky
@lukescurrenthobby4179
@lukescurrenthobby4179 12 днів тому
That’s me rn
@ProcashFloyd
@ProcashFloyd 3 роки тому
Nice to hear from someone who actually knows what they are talking about. Not for the sake of making youTube content.
@squirlmy
@squirlmy 3 роки тому
I thought specifically for Apple Mac's move to ARM. I've heard theories that are basically "conspiracy" theories! lol
@mrrolandlawrence
@mrrolandlawrence 3 роки тому
i bet gary still runs openVMS at home ;)
@mayankbhaisora2699
@mayankbhaisora2699 3 роки тому
@@mrrolandlawrence I don't know what the hell are you talking about but i get what you are saying :)
@ragnarlothbrook8117
@ragnarlothbrook8117 3 роки тому
Exactly! I'm always impressed by Gary's knowledge.
@RaymondHng
@RaymondHng 3 роки тому
@@mayankbhaisora2699 VMS was the operating system that ran on DEC minicomputers (midrange systems). OpenVMS is the descendant of VMS that is developed and supported by VMS Software Inc. en.wikipedia.org/wiki/OpenVMS
@octacore9976
@octacore9976 3 роки тому
There are thousands of useless videos "Apple moving to it's own silicon!!!"...but this is the only video that is actually informative.
@pranay7264
@pranay7264 3 роки тому
sike
@Charlie-jf1wb
@Charlie-jf1wb 3 роки тому
Struggled to find someone who can actually explain something as complex as Arm v x86 in such straightforward terms. thank you.
@goombah_ninja
@goombah_ninja 3 роки тому
Nobody can explain it better than you. Thanks for packing it all under 21 mins. I know it's tough.
@mohammedmohammed519
@mohammedmohammed519 3 роки тому
Gary, you’ve been there and done that ⭐️
@numtostr
@numtostr 3 роки тому
Hey gary, your videos are awesome. I am waiting for some more rust videos. Last rust video helped me to get started in rust lang.
@yogevbocher3603
@yogevbocher3603 3 роки тому
Just to give a feedback: The pronunciation of the name Dobberpuhl was perfect.
@seanc.5310
@seanc.5310 3 роки тому
How else would you pronounce it?
@laszlosteiner
@laszlosteiner 3 роки тому
@@seanc.5310 like South Gloucestershire
@ivanguerra1260
@ivanguerra1260 3 роки тому
I understood rubber poop !!
@squirlmy
@squirlmy 3 роки тому
Of course, he's British, not an American!
@hi_tech_reptiles
@hi_tech_reptiles 3 роки тому
The possibilities for how this will go and how it will effect the industry or other players in said industry is endless. Very interesting next few years for numerous reasons, this being a big one. Great vid too btw.
@ricgal50
@ricgal50 Місяць тому
Really great to hear someone who knows about Acorn. In 1986 I lived in North-western Ontario (Canada). Our library put in a desk with 6 computers on it. They were the North American version of the BBC Micro, made by Acorn. It was the first computer I worked on. I didn't find out about the ARM chip and the Archimedes until the mid nineties. And it was shortly after that time that ARM was spun off. BTW, Acorn was owned by Olivetti at this time. When I found out about the Raspberry Pi, I got onboard. I had a model A chip, and then I bought a Pi 4 just in time for Covid, so I could use my camera module to have a second camera for Zoom.
@BeansEnjoyer911
@BeansEnjoyer911 3 роки тому
Subbed. Just straight up information easily explained. Love it
@ZhangMaza
@ZhangMaza 3 роки тому
Wow I learn a lot just from watching your video, thanks Gary :)
@GaryExplains
@GaryExplains 3 роки тому
Glad to help
@TurboGoth
@TurboGoth 2 роки тому
In your slide listing the major differences in RISC v CISC, one thing that struck ME as relevant because of my interest in compilers and which admittedly may not be particularly worth mentioning depending on your audience, is that RISC instructions also tend to be more uniform in the sense that if you want to do an add instruction, for example, you don't have to really think about what instructions are allowed with which registers. Also, the instruction pointer register is just a regular general purpose register while that register is often special purpose in other architectures. It's awkward and roundabout to even access. Often you need odd tricks like to use Intel's call instruction as if you're calling a function for its side effect of pushing the instruction pointer to the stack. Then from there, you can pop the value off. But in arm, you just have it in one of your normal registers. Obviously, you must beware if you dump random garbage into it that you'll start running code from a different place in memory but that should be obvious. Yet such uniformity can eat space and so the THUMB instructions don't have it.
@adj2
@adj2 2 роки тому
Absolutely beneficial I learned a lot. I still have a lot more learning to do. Definitely subscribed and will be pulling up other videos that you’ve done for additional information.
@hypoluxa
@hypoluxa 3 роки тому
Great overview and explanation of the current situation. Very helpful.
@jeroenstrompf5064
@jeroenstrompf5064 3 роки тому
Thank you! You get extra points for mentioning Elite - I played that so much on a Commodore 64 when I was around 16
@GaryExplains
@GaryExplains 3 роки тому
Glad you enjoyed it!
@thecalvinprice
@thecalvinprice 3 роки тому
My father was working for DEC at that time, and he told me a lot about the Alpha chip and their foray into 64bit before AMD and Intel brought their consumer 64bit chips to market. He also told me about the purchase by Compaq(and subsequently HP) and that a lot of people weren't keen on the purchase as there was concern all their efforts would disappear. These days DEC is barely a whisper when people talk about tech history, but I still remember sitting at an ivory CRT with the red 'DIGITAL' branding on it. Edit: Thanks Gary for the little nostalgia trip.
@scality4309
@scality4309 3 роки тому
VT-100?
@tasosalexiadis7748
@tasosalexiadis7748 2 роки тому
The leader designer of the DEC Alpha founded an CPU company in 2003 which Apple bought in 2008 (PA Semi). This were they got the tallent to engineer their own CPUs for the iPhone (starting from iPhone 5) and now the new ARM-based Macs.
@handris99
@handris99 3 роки тому
I was afraid in the beginning that all I'll hear is history but I'm glad I watched til the end the answers to my questions were answered.
@binoymathew246
@binoymathew246 3 роки тому
@Gary Explains Very educational. Thank you for this.
@aaaaea9268
@aaaaea9268 3 роки тому
This video is so underrated like lol you explained something I was never able to understand in just 20 minutes
@lilmsgs
@lilmsgs 3 роки тому
I'm an ex-DECie tech guy too. Glad to see someone helping to explain their place in history. All these years later, I'm still heart broken.
@TechboyUK
@TechboyUK 5 місяців тому
Excellent overview! WIth the CPU race on at the moment, it would be great to have an updated version of this video in around 6 months from now 😊
@GaryExplains
@GaryExplains 5 місяців тому
I agree. 😀
@cliffordmendes4504
@cliffordmendes4504 2 роки тому
Gary, you explaination is smooth like butter!
@dalobucaram7078
@dalobucaram7078 3 роки тому
Gary is arguably the best person to explain these kind of topics in layman's terms. Intel will finally get some humolity lesson.
@mokkorista
@mokkorista 3 роки тому
My cat: trying to catch the red dot.
@stargazerweerakkody8254
@stargazerweerakkody8254 3 роки тому
Did He?
@deus_ex_machina_
@deus_ex_machina_ 3 роки тому
@@stargazerweerakkody8254 No. Source: I was the cat.
@glasser2819
@glasser2819 3 роки тому
Brilliant ✌️ Thank you for making sense of the current silicon architecture challenges 👍
@SeetheWithin
@SeetheWithin 3 роки тому
Very nice video and full of details! Keep those coming!
@JanuszKrysztofiak
@JanuszKrysztofiak 2 роки тому
I've got an impression memory is (relatively) slower and more expensive TODAY than back then. Then - in the early 1980s - performances of RAM and CPUs were not far apart, so CPUs were not that handicapped by RAM - they could fetch instructions directly and remain fully utilized. Today it is different: RAM is much, much slower than CPU, so CPUs spend a good part of their transistor budgets on internal multilevel caches. Whereas on modern systems you can have 128 GB of RAM or more, the one that actually matches your CPU speed is the L1 cache which is tiny - Ryzen 5950x has only 64 kilobytes of L1 cache per core (32 kB for code and 32 kB for data). I would say the instruction set "density" is even more important now.
@mayatrash
@mayatrash Рік тому
Why do you think that is? Because the R&D Intro memory is worse? Genuine question
@okaro6595
@okaro6595 Рік тому
Very few modern systems have 128 GB RAM. Typical is about 16. 16 GB costs some $50. In in around 1983 typical was 64 KB. It was about $137 which inflation adjusted would be about $410. Sure RAM is not more expensive now.
@GreenDayGA
@GreenDayGA 5 місяців тому
@@okaro6595 L1 cache is expensinve
@johnmyviews3761
@johnmyviews3761 3 роки тому
I understood Intel was a memory maker initially however a Japanese company commissioned intel to develop its calculator chips that ultimately developed into microprocessors
@jazmihamizan4987
@jazmihamizan4987 3 роки тому
And the space race too
@ercipineda1357
@ercipineda1357 3 роки тому
Its like going to a seminar but for free! Thanks a bunch.
@falcon81701
@falcon81701 3 роки тому
Best video on this topic by far
@Delis007
@Delis007 3 роки тому
I was waiting for this video. Thanks
@realme-em3xy
@realme-em3xy 3 роки тому
Me 2
@danielcartis9011
@danielcartis9011 3 роки тому
This was absolutely fascinating. Thank you!
@cuddlybug2026
@cuddlybug2026 2 роки тому
Thanks for the video, if I use Windows ARM on Macbook (via Parallel) can I download windows app from any source? Or does it have to be from the Microsoft Store only?
@shobeirasayesh6378
@shobeirasayesh6378 3 роки тому
Many thanks Gary and appreciate your effort and time to research on the contents in this video.
@GaryExplains
@GaryExplains 3 роки тому
My pleasure!
@taidee
@taidee 3 роки тому
Very rich in details this video as usual, thank you 🙏🏾 Gary.
@GaryExplains
@GaryExplains 3 роки тому
My pleasure!
@STohme
@STohme 3 роки тому
Very interesting presentation. Many thanks Gary.
@GaryExplains
@GaryExplains 3 роки тому
Glad you enjoyed it
@detroid89
@detroid89 3 роки тому
Very informative Gary. Cheers!
@correcteur_orthographique
@correcteur_orthographique 3 роки тому
Silly question : why haven't we uses ARMs processors in PC before ??
@Rehunauris
@Rehunauris 3 роки тому
There have been ARM powered computers (Raspberry Pi is best example) but it's been hobbyist/niche market.
@Ashish414600
@Ashish414600 3 роки тому
because people don't want to rewrite everything! ARM architecture is dominant in embedded system market,in SOCs, you won't see x86 architecture popular there. For PCs, it's opposite. Intel already dominated PC market so it's hard for any company to develop a system for entirely different architecture. The S/W developers (especially the cross compiler designers) will surely have headache, but if Apple is successful, it will indeed bring a revolution, and challenge Intel monopoly in pc!
@correcteur_orthographique
@correcteur_orthographique 3 роки тому
@@Ashish414600 ok thx for your answer.
@augustogalindo8687
@augustogalindo8687 2 роки тому
ARM is actually a RISC architecture, and there is information about it in Grove’s book (Ex Intel CEO), he claims Intel actually considered using RISC instead of CISC (current Intel chips architecture) but he decided against it because there was not much of a difference, consider we are talking about a time where most computers where stationary and didn’t need to be energy efficient, so it made sense back then to keep on with CISC. However, nowadays energy efficiency has become very important and that’s where ARM is taking an important role.
@alexs_thoughts
@alexs_thoughts 3 роки тому
So what would be any arguments in favor of the Intel (or X86 in general) side of the situation?
@tophan5146
@tophan5146 3 роки тому
Unexpected complications with 10nm.
@RickeyBowers
@RickeyBowers 3 роки тому
IPC and higher single-core speed.
@Robwantsacurry
@Robwantsacurry 3 роки тому
The same reasons that CISC was developed in the first place, in the 1950's memory was rare and expensive, complex instruction sets where developed to reduce the ammount of memory required. Today memory is cheap but its speed hasn't improved as fast as CPU's, a RISC CPU requires more instrucions hence more memory access, so memory bandwith is more of a bottleneck. That is why a CISC CPU can have a major advantage in high performance computing.
@snetmotnosrorb3946
@snetmotnosrorb3946 3 роки тому
Compatibility. That's it really. x86 has come to the end of the road. The thing is bloated by all different design paths taken and extensions implemented over the decades, and is crippled by legacy design philosophies from the 70s. Compatibility is really the only reason it has come this far, that is what attracted investment. PowerPC is a way beter design even though it's not much newer, but it came in a time when Wintel rolled over all competition in the 90s combined with insane semiconductor manufacturing advances that only the biggest dogs could afford, and thus PPC didn't gain the traction needed to survive in the then crucial desktop and later laptop computer markets. Now the crucial markets are server and mobile devices, places where ARM has a growing foot in and totally dominates respectively. Now ARM is getting the funding needed to surpass the burdened x86 in all metrics. The deciding factor is that x86 has hit a wall, while ARM has quite a lot of potential still, and that is what ultimately will force the shift despite broken compatibility. Some will still favour legacy systems, so x86 will be around for a long time, but its haydays are definitely counted. @@RickeyBowers ARM has way higher IPC than x86. No-one has ever really tried to make a wide desktop design based on ARM until now, so total single core speed is only valid now a few more years.
@AdamSmith-gs2dv
@AdamSmith-gs2dv 3 роки тому
@@Robwantsacurry Single core performance is also better with x86 CPUs, for ARM CPUs to accomplish anything they NEED to have multi threaded programs other wise they are extremely slow
@Agreedtodisagree
@Agreedtodisagree 3 роки тому
Great job Gary.
@afriyievictor
@afriyievictor 3 роки тому
Tanx Gary you are my favorite IT teacher
@1MarkKeller
@1MarkKeller 3 роки тому
*GARY!!!* Good Morning Professor!* *Good Morning Fellow Classmates!*
@GaryExplains
@GaryExplains 3 роки тому
MARK!!!
@projectz9776
@projectz9776 3 роки тому
Mark!!!
@jordanwarne911
@jordanwarne911 3 роки тому
Mark!!!
@AndrewMellor-darkphoton
@AndrewMellor-darkphoton 3 роки тому
this fills like meme MARK!!!
@-Blue-_
@-Blue-_ 3 роки тому
MARK!!!
@cypherllc7297
@cypherllc7297 3 роки тому
I am a simple man . I see gary, I like the video
@taher9358
@taher9358 3 роки тому
Very original
@1MarkKeller
@1MarkKeller 3 роки тому
Even before watching ... click
@user-ez8fb3sk3d
@user-ez8fb3sk3d 3 роки тому
@@1MarkKeller MARK!!!
@pilabs3206
@pilabs3206 3 роки тому
Thanks Gary.
@stephen7715
@stephen7715 5 місяців тому
Absolutely brilliant video. Thank you for sharing
@madmotorcyclist
@madmotorcyclist 3 роки тому
It is interesting how the CISC vs. RISC battle has evolved with Intel's CISC holding the lead for many years. Unfortunately, Intel rested on its laurels by keeping the 8086 architecture and boosting its operating frequencies while reducing the chip size production down in nm levels. Thermal limits with this architecture have literally been reached giving Apple/ARM the open door with their approach which now after many years has surpassed the 8086 architecture. It will be interesting to see how Intel reacts given their hegemony control of the market.
@jinchoung
@jinchoung 3 роки тому
surpised you didn't mention the softbank acquisition. all my arm stock got paid out when that happened and it kinda surprised me. totally thought I'd just get rolled over into softbank stock.
@patdbean
@patdbean 3 роки тому
Yes, £17 a share was a good deal at the time, I wonder what they would be valued at today.
@autohmae
@autohmae 3 роки тому
@@patdbean they benefited from the price drop of the Pound because of Brexit.
@patdbean
@patdbean 3 роки тому
@@autohmae SoftBank did yes, but ARM themselves (I think) have always charged royalties in USD.
@vernearase3044
@vernearase3044 3 роки тому
Well, it looks like Softbank is shopping ARM around ... hope it doesn't get picked up by the mainland Chinese. As for stocks, I noticed I was spending waaaayyy too much on Apple gear, so I bought some Apple right after the 7-1 split in 2014 to help defray the cost at IIRC about $96/share.
@Cheese-n-Cake16
@Cheese-n-Cake16 3 роки тому
@@vernearase3044 The British regulation board will not allow the Chinese to buy ARM, because if they do, that would be the death of ARM in the Western world
@sopek1427
@sopek1427 3 роки тому
Was looking for such a vid. Nice.
@chillidog8726
@chillidog8726 3 роки тому
Hey what do you think about RISC V Macro op Fusion and its importance for RISC V to eventuall replace x86 and ARM for open sauce (maybe)
@TheSahil-mv3ix
@TheSahil-mv3ix 3 роки тому
Sir ! When will ARM v9 arrive ? Are there any dates or assumptions ? What will be it like ?
@MiguelAngel-rw7kn
@MiguelAngel-rw7kn 3 роки тому
Rumors says that the a14 will be the first one to implement it, so ARM should announce it before Apple. Maybe next month?
@roybixby6135
@roybixby6135 3 роки тому
And everyone thought Acorn was finished when it's RISC Archimedes computer flopped...
@trendyloca2330
@trendyloca2330 3 роки тому
Thanks for the whole story that was awesome.
@GaryExplains
@GaryExplains 3 роки тому
Glad you enjoyed it!
@official_ashhh
@official_ashhh 5 місяців тому
Brilliant explanation of x86 vs risc architecture.
@denvera1g1
@denvera1g1 3 роки тому
Everyone comparing ARM and Intel, no one talking about ARM and AMD Like the Ampere Altra(80 core) VS EPYC 7742(64 core). Ampere is 4% more powerful, and uses 10% less energy making it 14.4% more efficent than AMD. But some people might point out that for AMD to compete with an 80 core, they have to pump more power into their 64 core which uses disproportunately more energy, than poerformance it improves, i'll be REALLY interested to see how a fully 7NM AMD EPYC where that space savings from a 7nm IO die instead of 12nm makes room for two more 8 core CCDs for a total of 80 cores. Some might argue, that if AMD had used a fully 7nm processor and had 80 cores, they would be not only more powerful, but also more efficicent(less energy for that power)
@scaryonline
@scaryonline 3 роки тому
So what about threadripper Pro? Its 20 percent more powerful than intel platinum 58 core
@denvera1g1
@denvera1g1 3 роки тому
@@scaryonline Doesnt it use more power than epyc because of higher frequency?
@gatocochino5594
@gatocochino5594 3 роки тому
I found no independent benchmarks for the Altra CPU, Ampere claims(keyword here) their CPU is 4% more powerful IN INTEGER WORKLOADS than the Epyc 7742. Saying the Ampere Altra is ''4% more powerful(...) than AMD'' is a bit misleading here.
@Caesim9
@Caesim9 3 роки тому
The big problem of Intel is that they invested heavily in branch prediction. And it was a wise move. Their single core performance was really great but then Spectre and Meltdown happened and they had to shut down the biggest improvements. Their rivals AMD or ARM invested more in multicore processors. They aren't affected by these vulnerabilities and so Intel has a lot of catching up to do.
@autohmae
@autohmae 3 роки тому
Actually, lots of architectures were effected by Spectre and Meltdown, but especially Intel the most. They effected at least: Intel, AMD, ARM, MIPS, PowerPC. But not: RISC-V and not Intel Itanium. At least RISC-V does things in a similar way but not all the things needed to hit into the problem. But in theory new designs of chips could have been affected too. Obviously they know about these things now, so it will probably not happen. Different processors series/types/models of each architecture were affected in different ways.
@Yusufyusuf-lh3dw
@Yusufyusuf-lh3dw 3 роки тому
Intel did not discard any of their prediction units or improvements because of spectre meltdown problem.
@8bitchiptune420
@8bitchiptune420 2 роки тому
That’s a great lecture, Sir. Thanks
@ashwani_kumar_rai
@ashwani_kumar_rai 3 роки тому
Hello gary can you make some videos on operating system but at the lower kernel level how things work, bootstrap,how drivers interact,how gui is build on the top of windowing system
@sathishsubramaniam4646
@sathishsubramaniam4646 3 роки тому
My brain has been itching for few years now whenever I hear ARM vs Intel, but I was too lazy. Finally everything is flushed and cleared out.
@diegoalejandrosarmientomun303
@diegoalejandrosarmientomun303 3 роки тому
Arm or Amd? Amd is the direct competence of intel regarding x86 chips and other stuff. Arm is another arquitecture, which is the one covered on this video
@RoyNeeraye
@RoyNeeraye 3 роки тому
10:52 *Apple
@GaryExplains
@GaryExplains 3 роки тому
Ooopss! 😱
@hotamohit
@hotamohit 3 роки тому
i was just reading it at that part, amazing that you noticed it.
@progtom7585
@progtom7585 3 роки тому
Brilliant, thanks Gary
@JamesOversteer
@JamesOversteer 2 роки тому
Gary you are awesome. I had no idea Xscale was off the back of arm. So much history.
@friendstype25
@friendstype25 3 роки тому
The last school project I did was on the development of Elite. Such a cool game! Also, planet Arse.
@dutchdykefinger
@dutchdykefinger 3 роки тому
never heard of that planet, is it close to uranus?
@technoman8219
@technoman8219 3 роки тому
@@dutchdykefinger hah
@Flankymanga
@Flankymanga 3 роки тому
Now we all know where Garry's knowledge of IC's come from... :)
@rene-jeanmercier6517
@rene-jeanmercier6517 3 роки тому
This is an EXCELLENT review for some one who programmed with an Intel 4004 way back when. Thank you so much. Regards, RJM
@GaryExplains
@GaryExplains 3 роки тому
Glad you enjoyed it!
@natjes6017
@natjes6017 3 роки тому
Great explanation, really enjoyed it!
@GaryExplains
@GaryExplains 3 роки тому
Glad you enjoyed it!
@gr8bkset-524
@gr8bkset-524 3 роки тому
I grew up using the 8088 in engineering school and upgraded my PCs along the way. I worked for Intel for 20 years after they acquired the multiprocessor company I worked for. I got rid of most of their stock after I stopped working for them and I saw the future in mobile. These days, my W10 laptop sits barely used while I'm perfectly happy with a $55 Raspberry Pi hooked up to my 55" TV. Each time I use my W10 laptop it seems to be doing some scan or background tasks that take up most of the CPU cycles. Old Dinosaurs fade away.
@yash_kambli
@yash_kambli 3 роки тому
Mean while when we could expect to see risc-v isa based smartphones and PCs. If someone would be bring out high performance , Out of order, deeper pipeline, multi threaded risc v processor then it might give tough competition to ARM
@GaryExplains
@GaryExplains 3 роки тому
The sticking point is the whole "if someone would be bring out high performance , Out of order, deeper pipeline, multi threaded RISC-V processor". The problem isn't the ISA but actually build a good chip with a good microarchitecture.
@shaun2938
@shaun2938 3 роки тому
Microsoft and Apple wouldn’t be spending billion on changing to ARM if they didn’t feel that ARM could keep up with x86 development while still offering significant power savings. Where RISC-V is still an unknown. Saying that, by supporting ARM it would most likely make supporting RISC-V in the future much easier.
@AnuragSinha7
@AnuragSinha7 3 роки тому
@@shaun2938 yeahI think compatibility won't be big issue because they all can design and make it backward compatible.
@autohmae
@autohmae 3 роки тому
RISC-V will take a decade or more, I think it will mostly be embedded and microprocessors for now and it could take a huge chunk of that market. And some a predicting RISC-V will be used in the hardware security module market
@carloslemos3678
@carloslemos3678 3 роки тому
@@GaryExplains Do you think Apple could roll their own instruction set in the future?
@junaidsiddiquemusic
@junaidsiddiquemusic 2 роки тому
Finally someone knowledgeable ❤️ thanks for sharing this information with us.
@ymxina
@ymxina 3 роки тому
Very smart and detail explanation. Thx Gerry
@GaryExplains
@GaryExplains 3 роки тому
Glad it was helpful!
@skarfie123
@skarfie123 3 роки тому
I can already imagine the videos in a few years "The fall of Intel"... Sad...
@WolfiiDog13
@WolfiiDog13 3 роки тому
I don't think it will fall. But it will take a huge hit, specially if the PC market also moves to better architectures
@stefanweilhartner4415
@stefanweilhartner4415 3 роки тому
they need to do some RISC-V stuff because the x86 world will die. that is for sure. just a matter when. they tried to push their outdated architecture in many areas where they completely sucked. in the embedded world and mobile world nobody gives a fuck about intel x86. it is just not suited fot that market and that market is already very competitive. intel just wasted tons of money in that regard. at some point they will run out of money too and then it is too late.
@WolfiiDog13
@WolfiiDog13 3 роки тому
@Rex yes, legacy support is the reason I don't think they will fail, and just take a huge financial hit instead, nobody is gonna immediately change their long running critical systems just cause the new architecture is better performing, when stability is key, you can't change to something new like that and expect everything to be fine. But you are wrong to think ARM is just "for people", actually, we already have big servers running on ARM for years now, and it works perfectly fine (performance per watt is way better on these systems). Also, quantum computers will not be substitute for traditional computing, it's more like just an addition with very specific applications, not everyone will take advantage of this, I think we will never see a 100% quantum system working, it will always be a hybrid (I could be wrong, but I also can't imagine how you would make a stable system with such a statistical-based computing device, you always need a traditional computer to control it).
@autohmae
@autohmae 3 роки тому
@the1919 coreteks probably already has one ready :-)
@autohmae
@autohmae 3 роки тому
@Rex You did see ARM runs the #1 top 500 super computer, right ? And Amazon offers is for cloud servers and ARM servers are being sold more and more. Not to mention: AMD could take a huge chunk of the market from Intel. More and more AMD servers are being sold now. All reducing Intel's budget.
@bigpod
@bigpod 3 роки тому
nanometer litrography doesnt mean anything when comparing 2 CPUs from different manufacturers because they define what they mesure as litography differently, aka intel CPUs will have more density of components at the same litograpjy size and even 1 size smaller from another manufacturer like tsmc
@smoothbraindetainer
@smoothbraindetainer 3 роки тому
Intel's talks with TSMC show's that Intel's 10nm is actually similar to TSMCs 6nm (not 7nm as speculated) and Intel's 7nm similar to TSMC 5nm.
@l.lawliet164
@l.lawliet164 Рік тому
Not true, the power consumption is different, intel can have the same density, but still use more power, because have bigger transistors
@bigpod
@bigpod Рік тому
@@l.lawliet164 how does that work if you go by transistor count (thats the density) intel can put at their 10nm litography same number of transistors in same space as TSMC 6nm, they just count different components(component that consists of multiple transistors)
@l.lawliet164
@l.lawliet164 Рік тому
@@bigpod that's true, but their transistors are still bigger that's why you see better power consumption for tsmc even if they both have the same density... this means Intel pack process is better, but there transistor is worse. Performance can be equal, but consumption can't
@l.lawliet164
@l.lawliet164 Рік тому
@@bigpod This actually give intel the advantage, because they can get same performance with a worse component and also more cheap.
@steelmm09
@steelmm09 3 роки тому
Excellent gary thanks for the great videos
@GaryExplains
@GaryExplains 3 роки тому
Glad you enjoyed it
@haithamkhatib
@haithamkhatib 3 роки тому
Thanks. Very informative
@lahmyaj
@lahmyaj 3 роки тому
Love your videos as always 👏🏻
@GaryExplains
@GaryExplains 3 роки тому
Glad you like them!
@InkDrop.
@InkDrop. 3 роки тому
Thanks Gary
@abymohanan2043
@abymohanan2043 3 роки тому
Thank you so much for this video 👍🏻👌🏻✌🏻
@karancastelino5714
@karancastelino5714 3 роки тому
Great video Gary
@GaryExplains
@GaryExplains 3 роки тому
Thanks 👍
@bibekghatak5860
@bibekghatak5860 3 роки тому
Nice video and thanks to Mr Gary for the enlightenment .
@GaryExplains
@GaryExplains 3 роки тому
Glad you enjoyed it
@rodrigopepe4630
@rodrigopepe4630 2 роки тому
Thank you so much!
@zomgoose
@zomgoose 3 роки тому
Thanks Gary!
@RonLaws
@RonLaws 3 роки тому
it may have been worth mentioning the NEON extension for ARM in more detail, as it is in essence what MMX was for the pentium - Hardware decoding of h264 data streams among other things. (relatively speaking)
@az09letters92
@az09letters92 3 роки тому
NEON is more like SSE2 for intel. MMX was pretty limited, you couldn't mix floating point math without extreme performance penalties.
@avejst
@avejst 3 роки тому
Great update 👍 Thanks for sharing 👍😀
@GaryExplains
@GaryExplains 3 роки тому
Thanks for watching!
@jorge1170xyz
@jorge1170xyz 3 роки тому
Hi great video. I'm wondering if you ever run low on content, could you cover the very interesting history of the Datapoint 2200? I know pretty nuch everybody would disagree with this assertion, but in my nind it is the first fully contained "Personal Computer".
@RaymondHng
@RaymondHng 3 роки тому
ukposts.info/have/v-deo/fKJ7nY-wqpCo2Z8.html ukposts.info/slow/PL6A115E759C11E84F
@jacobfield4848
@jacobfield4848 Рік тому
Nice information.
@lolomo5787
@lolomo5787 3 роки тому
Its cool that gary takes time to read and replies to sensible comments here even if his video is uploaded months or even a years ago. Other channels dont do that.
@GaryExplains
@GaryExplains 3 роки тому
I try my best.
@FullMetalPower7
@FullMetalPower7 3 роки тому
a very concise video! awesome
@noobletify869
@noobletify869 3 роки тому
Great video! Thank you.
@mummoorthy6511
@mummoorthy6511 Рік тому
Thanks for your video explains support 👏👏
@frenchyalicea649
@frenchyalicea649 3 роки тому
Have you made a vid on Marvel's Thunderx3/latest chip and how it got from xscale to current design???
@robins2246
@robins2246 2 роки тому
Awesome..thanks!
@seeker9145
@seeker9145 3 роки тому
Nice explanation. However, I would like to know why did Apple have to base its processor architecture on ARM if it was designing it's own custom architecture? Is it because they needed the ARM instruction set? If yes, couldn't they make their own instruction set? Or that is a very long process?
@igorthelight
@igorthelight 3 роки тому
It's much easier to use already existing architecture that develop your own.
@reikken69
@reikken69 3 роки тому
what about RISC-V? heard it is quite different from the ARM architecture.....
@wompa70
@wompa70 3 роки тому
HPE also has a system based on the Fujitsu A64FX chip. Well, it was announced as the Cray CS500 but will now be marketed as the Apollo 80.
@MarthaFockerMF
@MarthaFockerMF 2 роки тому
Thanks for the info dude, its comprehensive, but a little bit too much on history part. Anyway, its a great vid! Keep it up!
@saisrikargollamudi7892
@saisrikargollamudi7892 3 роки тому
Amazing video!
@GaryExplains
@GaryExplains 3 роки тому
Glad you think so!
@apivovarov2
@apivovarov2 3 роки тому
What shares should we buy?
@kunleadelaja9159
@kunleadelaja9159 3 роки тому
Great video
Arm vs RISC V- What You Need to Know
22:19
Gary Explains
Переглядів 296 тис.
RISC-V vs x86 - History and Key Differences Explained
23:36
Gary Explains
Переглядів 50 тис.
Артем Пивоваров х Klavdia Petrivna - Барабан
03:16
Artem Pivovarov
Переглядів 1,7 млн
Лизка заплакала смотря видео котиков🙀😭
00:33
Intel have just made their BIGGEST MISTAKE yet
13:15
Coreteks
Переглядів 62 тис.
ПРОЦЕССОРЫ ARM vs x86: ОБЪЯСНЯЕМ
12:07
Droider
Переглядів 676 тис.
128-core MONSTER Arm PC: faster than a Mac Pro!
15:24
Jeff Geerling
Переглядів 387 тис.
I Can Die Now. - Intel Fab Tour!
21:51
Linus Tech Tips
Переглядів 4 млн
How Arm Powers Chips By Apple, Amazon, Google And More
15:46
CNBC
Переглядів 768 тис.
Jim Keller: Arm vs x86 vs RISC-V - Does it Matter?
10:11
TechTechPotato: Clips 'n' Chips
Переглядів 53 тис.
Intel CPU Generations Explained - Super Easy Guide!
10:01
SoulOfTech
Переглядів 12 тис.
Why Apple's M1 Chip is So Fast
13:36
The Dev Doctor
Переглядів 205 тис.
It Took 53 Years for AMD to Beat Intel. Here's Why. | WSJ
6:52
The Wall Street Journal
Переглядів 387 тис.