Search
Search titles only
By:
Search titles only
By:
Log in
Register
Search
Search titles only
By:
Search titles only
By:
Menu
Install the app
Install
Forums
New posts
All threads
Latest threads
New posts
Trending threads
Trending
Search forums
What's new
New posts
New ads
New profile posts
Latest activity
Free Ads
Latest reviews
Search ads
Members
Current visitors
New profile posts
Search profile posts
Contact us
Latest ads
Ad icon
Sell your Land, House on idamata.lk for FREE
sajith.xp.pk
Updated:
Yesterday at 9:03 AM
Handmade Character Soft Toys
anil1961
Updated:
Tuesday at 2:11 PM
Bodim.lk out now !
Manoj Suranga Bandara
Updated:
Sunday at 3:05 AM
Power Lifting Lever Belt
SkullVamp
Updated:
Jun 13, 2026
Ad icon
port.lk Domain for sale
Lankan-Tech
Updated:
Jun 13, 2026
Electronics
Vehicles
Property
Search
Reply to thread
Forums
Computers & Internet
News & Discussion
What is meant by multi-core CPUs
Get the App
JavaScript is disabled. For a better experience, please enable JavaScript in your browser before proceeding.
You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser
.
Message
<blockquote data-quote="Anusha" data-source="post: 1765192" data-attributes="member: 828"><p>From what I see, there is a lot of confusion among people about what multicore CPUs mean.</p><p></p><p>All the desktop processors released by Intel and AMD up to 2005 were single core CPUs. However there were multi-processor systems before that; that technology is somewhat older (going back to Pentium 2 days).</p><p></p><p><strong>What is a core? </strong></p><p></p><p>Core is the actual processing unit of the CPU. It includes the Arithmatic and Logic Unit (ALU; which does pretty much all the operations), a lot of registers (which are super fast memory units, going up to a maximum of 8 bytes per register for a 64bit processor) and higher level cache (L1 most of the times). </p><p></p><p>So a core is pretty much like a complete processor. </p><p></p><p>When multiple cores are made in one single semeconductor die + lower level cache like L2 and L3, it is a multi-core CPU. (You can have separate dies and combine them from outside the dies, and this is how the first Quad Cores were made; they combined two Core 2 Duo dies and make a Quad Core; not putting all 4 cores into one die)</p><p></p><p><strong>What is the difference between Multi-core and Multi-processor systems?</strong></p><p></p><p>In Multi-core, it is one CPU. In Multi-Processor, it is many CPUs. There is resource sharing in a multi-core system. These resources are lower level cache (L2 or L3), Memory Bus and Memory too! In a Multi-Processor system, it is like two computers. Each processor has its own memory buses and its own memory.</p><p></p><p>So what is efficient? Multi-core! Why? Because it shares resources. (<a href="http://www.pugetsystems.com/articles.php?id=23" target="_blank">Weird how AMD's dual-core systems is faster than dual-processor system</a>; maybe it has something to do with the Integrated Memory Controller and Super fast Hypertransport Bus)</p><p></p><p>Another important thing is that software developers consider multi-processor systems as multiple PCs! For example, you can install Windows XP Pro only up to a dual-processor system, but you can install it on a 1000-core system and more. The license for Windows XP Pro edition states that you can't install it on a system with more than 2 processors.</p><p></p><p><strong>How do they differ from a single-core CPU when operating?</strong></p><p></p><p>Processors execute instructions sequentially. They can't process anything simultaneously. You may feel like many things are happening at the same time, when you listen to music and browse the internet, but it doesn't. The CPU switches between the processes rapidly to serve them. How much it spends on one process is decided by the Operating System. <strong>Scheduling</strong>, which is the term used for this CPU resource allocation is an advanced topic that comes under Operating systems. </p><p></p><p>Anyway...like I said, instructions are executed sequentially, not parallely.</p><p></p><p>How can you make a new CPU faster?</p><ol> <li data-xf-list-type="ol">You can increase the clock speed</li> <li data-xf-list-type="ol">You can increase number of intructions executed per clock</li> <li data-xf-list-type="ol">You can separate independent portions of a process, and execute them on separate resources, in this case multiple cores or processors</li> </ol><p></p><p>Increasing the clock speed is not easy. It increases the power requirements, and the transistor switching times cannot be lowered easily. New researches need to be done on that. New transistors have to be developed with fast switching without sacrificing power.</p><p></p><p>Even if you increase the instructions per clock rate, it is still executing sequentially. It is efficient that increasing the clock speed because you get to keep the processor power consumption (which is predominently a function of voltage and clock speed) at a low level while getting the same performance.</p><p></p><p>Multi-core is the true winner, because you can design a system with very low clock speed, and which can shut down all the cores except one, to lower the power consumption. And you get true parallalism. Higher the parallelism, higher the responsiveness of the system, because there is enough resources left to do many things.</p><p></p><p>But remember, the software developers have a big role to play, because they have to design them to work in multiple threads, to get the advantage of SMT (Simutaneous Multi-Threading) </p><p></p><p><strong>Many-core vs Multi-core</strong></p><p></p><p>What? Is that different? Yeah! wtf! <img src="/styles/default/xenforo/smilies/default/rofl.gif" class="smilie" loading="lazy" alt=":rofl:" title="ROFL :rofl:" data-shortname=":rofl:" /></p><p></p><p>Multi-core means that the cores are homogeneous (are exactly same). Many cores means the cores can be different. For example, CPU + GPU core system is a many core system. They are not called multicores.</p><p></p><p><strong>Hyperthreading vs Multi-core</strong></p><p></p><p>Hyperthreading is something Intel brought because of their vastly inferior netburst architecture on Pentium 4, to put some of the wasted CPU cycles for something useful. It achieves multithreading by duplication of certain units inside the CPU, but not the ALU as far as I know.</p><p></p><p>The operating system sees them as logical processors, not physical processors as in Multicore or Mutiprocessor systems. It doesn't really matter to the Operating System. The scheduling is done similar to a multicore system. It does speed up, because there is some degree of parallelism, but not as much as a multicore or multiprocessor system. Better than nothing <img src="/styles/default/xenforo/smilies/default/P.gif" class="smilie" loading="lazy" alt=":P" title=":P :P" data-shortname=":P" /></p></blockquote><p></p>
[QUOTE="Anusha, post: 1765192, member: 828"] From what I see, there is a lot of confusion among people about what multicore CPUs mean. All the desktop processors released by Intel and AMD up to 2005 were single core CPUs. However there were multi-processor systems before that; that technology is somewhat older (going back to Pentium 2 days). [B]What is a core? [/B] Core is the actual processing unit of the CPU. It includes the Arithmatic and Logic Unit (ALU; which does pretty much all the operations), a lot of registers (which are super fast memory units, going up to a maximum of 8 bytes per register for a 64bit processor) and higher level cache (L1 most of the times). So a core is pretty much like a complete processor. When multiple cores are made in one single semeconductor die + lower level cache like L2 and L3, it is a multi-core CPU. (You can have separate dies and combine them from outside the dies, and this is how the first Quad Cores were made; they combined two Core 2 Duo dies and make a Quad Core; not putting all 4 cores into one die) [B]What is the difference between Multi-core and Multi-processor systems?[/B] In Multi-core, it is one CPU. In Multi-Processor, it is many CPUs. There is resource sharing in a multi-core system. These resources are lower level cache (L2 or L3), Memory Bus and Memory too! In a Multi-Processor system, it is like two computers. Each processor has its own memory buses and its own memory. So what is efficient? Multi-core! Why? Because it shares resources. ([URL="http://www.pugetsystems.com/articles.php?id=23"]Weird how AMD's dual-core systems is faster than dual-processor system[/URL]; maybe it has something to do with the Integrated Memory Controller and Super fast Hypertransport Bus) Another important thing is that software developers consider multi-processor systems as multiple PCs! For example, you can install Windows XP Pro only up to a dual-processor system, but you can install it on a 1000-core system and more. The license for Windows XP Pro edition states that you can't install it on a system with more than 2 processors. [B]How do they differ from a single-core CPU when operating?[/B] Processors execute instructions sequentially. They can't process anything simultaneously. You may feel like many things are happening at the same time, when you listen to music and browse the internet, but it doesn't. The CPU switches between the processes rapidly to serve them. How much it spends on one process is decided by the Operating System. [B]Scheduling[/B], which is the term used for this CPU resource allocation is an advanced topic that comes under Operating systems. Anyway...like I said, instructions are executed sequentially, not parallely. How can you make a new CPU faster? [LIST=1][*]You can increase the clock speed[*]You can increase number of intructions executed per clock[*]You can separate independent portions of a process, and execute them on separate resources, in this case multiple cores or processors[/LIST] Increasing the clock speed is not easy. It increases the power requirements, and the transistor switching times cannot be lowered easily. New researches need to be done on that. New transistors have to be developed with fast switching without sacrificing power. Even if you increase the instructions per clock rate, it is still executing sequentially. It is efficient that increasing the clock speed because you get to keep the processor power consumption (which is predominently a function of voltage and clock speed) at a low level while getting the same performance. Multi-core is the true winner, because you can design a system with very low clock speed, and which can shut down all the cores except one, to lower the power consumption. And you get true parallalism. Higher the parallelism, higher the responsiveness of the system, because there is enough resources left to do many things. But remember, the software developers have a big role to play, because they have to design them to work in multiple threads, to get the advantage of SMT (Simutaneous Multi-Threading) [B]Many-core vs Multi-core[/B] What? Is that different? Yeah! wtf! :rofl: Multi-core means that the cores are homogeneous (are exactly same). Many cores means the cores can be different. For example, CPU + GPU core system is a many core system. They are not called multicores. [B]Hyperthreading vs Multi-core[/B] Hyperthreading is something Intel brought because of their vastly inferior netburst architecture on Pentium 4, to put some of the wasted CPU cycles for something useful. It achieves multithreading by duplication of certain units inside the CPU, but not the ALU as far as I know. The operating system sees them as logical processors, not physical processors as in Multicore or Mutiprocessor systems. It doesn't really matter to the Operating System. The scheduling is done similar to a multicore system. It does speed up, because there is some degree of parallelism, but not as much as a multicore or multiprocessor system. Better than nothing :P [/QUOTE]
Insert quotes…
Verification
Asuwa dahayen wadi kalama keeyada?
Post reply
Top
Bottom