Arm vs x86 - Key Differences Explained

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

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

КОМЕНТАРІ: 921
@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.
@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
@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 7 днів тому
That’s me rn
@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.
@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!
@mohammedmohammed519
@mohammedmohammed519 3 роки тому
Gary, you’ve been there and done that ⭐️
@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.
@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.
@BeansEnjoyer911
@BeansEnjoyer911 3 роки тому
Subbed. Just straight up information easily explained. Love 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.
@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!
@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.
@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.
@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.
@ZhangMaza
@ZhangMaza 3 роки тому
Wow I learn a lot just from watching your video, thanks Gary :)
@GaryExplains
@GaryExplains 3 роки тому
Glad to help
@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.
@hypoluxa
@hypoluxa 3 роки тому
Great overview and explanation of the current situation. Very helpful.
@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.
@aaaaea9268
@aaaaea9268 3 роки тому
This video is so underrated like lol you explained something I was never able to understand in just 20 minutes
@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.
@glasser2819
@glasser2819 3 роки тому
Brilliant ✌️ Thank you for making sense of the current silicon architecture challenges 👍
@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
@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 4 місяці тому
@@okaro6595 L1 cache is expensinve
@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. 😀
@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.
@danielcartis9011
@danielcartis9011 3 роки тому
This was absolutely fascinating. Thank you!
@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!!!
@cliffordmendes4504
@cliffordmendes4504 2 роки тому
Gary, you explaination is smooth like butter!
@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!
@Delis007
@Delis007 3 роки тому
I was waiting for this video. Thanks
@realme-em3xy
@realme-em3xy 3 роки тому
Me 2
@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!!!
@SeetheWithin
@SeetheWithin 3 роки тому
Very nice video and full of details! Keep those coming!
@binoymathew246
@binoymathew246 3 роки тому
@Gary Explains Very educational. Thank you for this.
@taidee
@taidee 3 роки тому
Very rich in details this video as usual, thank you 🙏🏾 Gary.
@GaryExplains
@GaryExplains 3 роки тому
My pleasure!
@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
@detroid89
@detroid89 3 роки тому
Very informative Gary. Cheers!
@ercipineda1357
@ercipineda1357 3 роки тому
Its like going to a seminar but for free! Thanks a bunch.
@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.
@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.
@sopek1427
@sopek1427 3 роки тому
Was looking for such a vid. Nice.
@JamesOversteer
@JamesOversteer 2 роки тому
Gary you are awesome. I had no idea Xscale was off the back of arm. So much history.
@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
@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.
@afriyievictor
@afriyievictor 3 роки тому
Tanx Gary you are my favorite IT teacher
@Agreedtodisagree
@Agreedtodisagree 3 роки тому
Great job Gary.
@roybixby6135
@roybixby6135 3 роки тому
And everyone thought Acorn was finished when it's RISC Archimedes computer flopped...
@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?
@falcon81701
@falcon81701 3 роки тому
Best video on this topic by far
@natjes6017
@natjes6017 3 роки тому
Great explanation, really enjoyed it!
@GaryExplains
@GaryExplains 3 роки тому
Glad you enjoyed it!
@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.
@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
@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!
@trendyloca2330
@trendyloca2330 3 роки тому
Thanks for the whole story that was awesome.
@GaryExplains
@GaryExplains 3 роки тому
Glad you enjoyed it!
@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
@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?
@lahmyaj
@lahmyaj 3 роки тому
Love your videos as always 👏🏻
@GaryExplains
@GaryExplains 3 роки тому
Glad you like them!
@progtom7585
@progtom7585 3 роки тому
Brilliant, thanks Gary
@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.
@Flankymanga
@Flankymanga 3 роки тому
Now we all know where Garry's knowledge of IC's come from... :)
@STohme
@STohme 3 роки тому
Very interesting presentation. Many thanks Gary.
@GaryExplains
@GaryExplains 3 роки тому
Glad you enjoyed it
@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?
@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.
@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.
@stephen7715
@stephen7715 5 місяців тому
Absolutely brilliant video. Thank you for sharing
@pilabs3206
@pilabs3206 3 роки тому
Thanks Gary.
@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.
@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)
@steelmm09
@steelmm09 3 роки тому
Excellent gary thanks for the great videos
@GaryExplains
@GaryExplains 3 роки тому
Glad you enjoyed it
@ymxina
@ymxina 3 роки тому
Very smart and detail explanation. Thx Gerry
@GaryExplains
@GaryExplains 3 роки тому
Glad it was helpful!
@junaidsiddiquemusic
@junaidsiddiquemusic 2 роки тому
Finally someone knowledgeable ❤️ thanks for sharing this information with us.
@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
@8bitchiptune420
@8bitchiptune420 2 роки тому
That’s a great lecture, Sir. Thanks
@avejst
@avejst 3 роки тому
Great update 👍 Thanks for sharing 👍😀
@GaryExplains
@GaryExplains 3 роки тому
Thanks for watching!
@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.
@official_ashhh
@official_ashhh 5 місяців тому
Brilliant explanation of x86 vs risc architecture.
@abymohanan2043
@abymohanan2043 3 роки тому
Thank you so much for this video 👍🏻👌🏻✌🏻
@haithamkhatib
@haithamkhatib 3 роки тому
Thanks. Very informative
@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.
@zomgoose
@zomgoose 3 роки тому
Thanks Gary!
@JuanGarcia-lh1gv
@JuanGarcia-lh1gv 3 роки тому
Great video! How powerful do you think Apple GPUs are going to be? Do you think they're going to compete with a 2080 ti?
@bibekghatak5860
@bibekghatak5860 3 роки тому
Nice video and thanks to Mr Gary for the enlightenment .
@GaryExplains
@GaryExplains 3 роки тому
Glad you enjoyed it
@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.
@bruceallen6492
@bruceallen6492 3 роки тому
80286 had segmentation, but it did not have paging. I think OS/2 would smoke a cigarette waiting for segment swaps. 80386 had segmentation swaps and paging. Paging was the what the engineers wanted. Beefier MOBO chips were needed to support DMA while the CPU continued to execute code. 8086 machines smoked during the DMAs with DOS.
@sgodsell2
@sgodsell2 3 роки тому
Do you think Apples new Mac ARM SoCs are based on ARMs Neoverse N1 or better yet E1 architecture? Because all the other ARMs chips before were based in a cluster sizes up to a maximum of 4 cores. The E1 can have a cluster up to 8 cores. The N1 can have clusters from 8 cores up to a maximum of 16 cores.
@GaryExplains
@GaryExplains 3 роки тому
Apple's silicon isn't based on any designs from Arm, it is Apples own design. Also, since DynamIQ, all Cortex CPUs can have 8 cores per cluster.
@gabboman92
@gabboman92 3 роки тому
Gary, I wonder if you could design a speed test like the one you made for the new and old cpu but for the arm mac when its released
@GaryExplains
@GaryExplains 3 роки тому
Yes, I think something like that might be possible, maybe I already started working on it! 🤫
@gabboman92
@gabboman92 3 роки тому
@@GaryExplains do you have a kit? i wonder if gaming on it will be viable *java minecraft*
@GaryExplains
@GaryExplains 3 роки тому
@@gabboman92 No I don't have a transition kit, but if I was theoretically working on such a tool then it would run on Windows, Linux, and macOS, on x86, x86-64, and ARM64. All the pieces necessary for that are available, except for ARM64 macOS.
@Nayr7928
@Nayr7928 3 роки тому
Hey Gary, I'd like to know more about how Metal, Vulkan and OpenGL works differently. Can you make a vid about it? Your vids of how things work are very informative.
@TurboGoth
@TurboGoth 2 роки тому
Ha! Wow. The finer points in how an API is designed and a comparison of APIs that achieve similar goals but are designed by different groups is a tough one. But I would like to add a perspective on this question since I've toyed with Vulkan and OpenGL. And, really Vulkan is OpenGL 5. Kronus, the creator of OpenGL wanted a reset in their API and going between the OpenGL versions in a somewhat graceful way was getting too awkward so they reset the API and went with a new name. Now, to bring Metal into the conversation, it should be noted than Vulkan is effectively an open Metal since Metal is Apple's but it took the same approach in that they are very heavy in their rigid establishment in how the software is to work with the configuration of the display settings so that the runtime conditionals inside the API to cope with any changing conditions are minimized. And this allows for very efficient communication between the application software and the hardware. Also, Vulkan (and perhaps Metal too - I don't know, I've never actually programmed in it - i'm no Apple fanboy) consolidates the compute API with the video API so that you can run number crunching workloads on the GPU with a similar API as you could use to draw images to the screen. And this lets you see the GPU as a more general data crunching device that only happens to crunch data on the same device where it is ultimately displayed. OpenCL is another API that gives this capability (to crunch data) but it is a more narrow view of GPU capabilities in that you don't use graphics through it. But Vulkan can be quite complicated because of all the burdensome setup that is to be established so as to simplify the runtime assumptions and this can really be a huge nuisance for a learner. Using OpenGL as of version 3.3 or so will make your journey easier. But OpenGL ES 2.0 or 3.0 will make it easier still so you can avoid the major OpenGL API drift as of the programmable shaders era which completely changed the game. Before that, there was something referred to as the "fixed function pipeline" and that's ancient history.
@karancastelino5714
@karancastelino5714 3 роки тому
Great video Gary
@GaryExplains
@GaryExplains 3 роки тому
Thanks 👍
@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
@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.
@danielho5635
@danielho5635 3 роки тому
3:03 Small Correction -- Itanium, at launch did not have x86 backward compatibility. Later on an x86 software emulation was made but it was too slow.
@reikken69
@reikken69 3 роки тому
what about RISC-V? heard it is quite different from the ARM architecture.....
@TCOphox
@TCOphox 3 роки тому
Thanks for converting those complex documentations into understandable English for plebians like me! Interesting things I've learnt so far: * AMD made direct Intel clones in the beginning. * Intel is forced to use AMD's 64bit. implementation because they couldn't develop their own successful one. * Intel has made ARM chips and has a license for ARMv6, but sold its ARM division off. * Apple had a much longer history with ARM than I expected. * Imagination went bankrupt so Apple bought lots of their IP and developed their own GPUs from there. * Apple was the first to incorporate 64bit into smartphones.
@piotrek-k
@piotrek-k 3 роки тому
Talking about porting of apps from programmer perspective: can x86 to ARM shift be done automatically? I've read many comments pointing that Apple moving to ARM might have some problems with actually convincing app developers to move to ARM. Apple is also offering special ARM based prototype computers for programmers just for testing so they could be ready for release of ARM Mac. Why is that? Isn't that a matter of simple app recompilation? Can't Apple do that automatically for apps in its store?
@deanhankio6304
@deanhankio6304 3 роки тому
what is the program used for the laser sight ?
@frenchyalicea649
@frenchyalicea649 3 роки тому
Have you made a vid on Marvel's Thunderx3/latest chip and how it got from xscale to current design???
@bsipperly
@bsipperly 3 роки тому
Hi Gary, Does this mean that Intel will create a straight up RISC processor to compete with Apple M1 chip? Better speed to power ratio?
@GaryExplains
@GaryExplains 3 роки тому
No, it won't.
@noobletify869
@noobletify869 3 роки тому
Great video! Thank you.
ПРОЦЕССОРЫ ARM vs x86: ОБЪЯСНЯЕМ
12:07
Droider
Переглядів 675 тис.
Jim Keller: Arm vs x86 vs RISC-V - Does it Matter?
10:11
TechTechPotato: Clips 'n' Chips
Переглядів 53 тис.
Иран ударил по израильскому аэропорту
00:14
TRT на русском
Переглядів 3,7 млн
I Trapped Myself in a Box with Colored Smoke!
00:50
A4
Переглядів 13 млн
Şirin Amin Yoxsa Şirin Nuray? 😍
00:24
Dance Online
Переглядів 109 млн
Arm vs RISC V- What You Need to Know
22:19
Gary Explains
Переглядів 296 тис.
128-core MONSTER Arm PC: faster than a Mac Pro!
15:24
Jeff Geerling
Переглядів 386 тис.
Intel have just made their BIGGEST MISTAKE yet
13:15
Coreteks
Переглядів 62 тис.
Why Apple's M1 Chip is So Fast
13:36
The Dev Doctor
Переглядів 205 тис.
How Arm Powers Chips By Apple, Amazon, Google And More
15:46
CNBC
Переглядів 763 тис.
96 ARM cores-it's massive! (Gaming + Windows on Arm!)
13:52
Jeff Geerling
Переглядів 352 тис.
Arm vs RISC-V? Which One Is The Most Efficient?
17:12
Gary Explains
Переглядів 114 тис.
I Can Die Now. - Intel Fab Tour!
21:51
Linus Tech Tips
Переглядів 4 млн
Intel is Gunning for NVIDIA
25:29
Gamers Nexus
Переглядів 376 тис.
Иран ударил по израильскому аэропорту
00:14
TRT на русском
Переглядів 3,7 млн