add the text "Types of Computer CPU" to article (#29168)

* add the text "Types of Computer CPU" to article

* fix: formatting
This commit is contained in:
Tri Eka Putra
2019-01-04 10:51:05 +07:00
committed by Christopher McCormack
parent b015efc9fe
commit 2de561ef12

View File

@ -3,7 +3,6 @@ title: CPU
---
## CPU
The Central Processing Unit (CPU) serves as the "brain" of a computer, allowing it to perform essential computational tasks.
CPUs are integrated circuits, which are complex circuits embedded on a single chip. They include registers, which store single values, and input/output pins. These pins allow them to talk to the rest of the computer. Due to the continued advancement of CPU technology, many computers today utilize a multi-processing unit. Multi-processors are single chips that contain two or more CPUs or "cores" that allow for increased processing capabilities.
@ -18,19 +17,29 @@ An instruction cycle for a CPU is called the fetch-decode-execute cycle - where
Perhaps the most common issue affecting the CPU is inadequate cooling. CPUs are the main generators of heat in computer systems. Due to their nature, they are typically located under the computer fan. There are various ways of reducing heat in a computer with the two main systems being air fans or liquid cooling systems. Proper heat maintenance and additional hardware can allow a properly configured CPU to perform better than rated by the chip manufacturer (aka "Overclocking"). Note that chips must be unlocked in order to have the ability to be overclocked.
<b>Function</b>
### Function
A microprocessor is a silicon chip containing millions of microscopic transistors. This chip functions as the computer's brain. It processes the instructions or operations contained within executable computer programs. Instead of taking instructions directly off of the hard drive, the processor takes its instructions from memory. This greatly increases the computer's speed.
<b> Manufacturers of computer microprocessors </b>
### Manufacturers of computer microprocessors
There are two primary manufacturers of computer microprocessors. Intel and Advanced Micro Devices (AMD) lead the market in terms of speed and quality. Intel's desktop CPUs include Celeron, Pentium and Core. AMD's desktop processors include Sempron, Athlon and Phenom. Intel makes Celeron M, Pentium M and Core mobile processors for notebooks. AMD makes mobile versions of its Sempron and Athlon, as well as the Turion mobile processor which comes in Ultra and Dual-Core versions. Both companies make both single-core and multi-core processors.
<b> Manufacturers of mobile microprocessors </b>
### Manufacturers of mobile microprocessors
The improvements in microprocessor technology have also led to signficant technology advances in CPUs designed specifically for the mobile space. Processors based on designs from ARM, Qualcomm, and others have resulted in new mobile devices with capabilities that are unheard of in past generations. These modern mobile CPUs power popular consumer devices from the latest iteration of Apple iPhones and Android based Phones to IOT(Internet of Things), devices like Amazon Echo and Google Home, with capabilities such as HD Video recording/video conferencing, stereo audio, 3D gaming, and applications that are dependent on mobile CPU performance. This is one of the factors contributing to the growth and adoption of mobile devices which in turn has generated demand and provided opportunity for the creation of new applications with greater capabilities.
The improvements in microprocessor technology have also led to significant technology advances in CPUs designed specifically for the mobile space. Processors based on designs from ARM, Qualcomm, and others have resulted in new mobile devices with capabilities that are unheard of in past generations. These modern mobile CPUs power popular consumer devices from the latest iterations of Apple iPhones and Android-based phones to Internet of Things (IOT) devices like Amazon Echo and Google Home. The improvements allow for capabilities such as HD video recording, video conferencing, stereo audio, 3D gaming, and applications that are dependent on mobile CPU performance. This is one of the factors contributing to the growth and adoption of mobile devices which has generated demand and provided opportunity for the creation of new applications with greater capabilities.
### Types of Computer CPUs
The computer CPU is a vital component that handles all the instructions and calculations that are sent to it from other computer's components and peripherals. The speed at which software programs operate is also very dependent upon how powerful the CPU is, so it is important to have the right type for what you expect it to handle. The two leading CPU manufacturers are Intel and AMD, each with their own types of CPUs
#### More Information:
#### Single Core CPUs
Single core CPUs are the oldest type of computer CPU available and initially this was the only type of CPU that could be used in computers. Single core CPUs can only start one operation at a time, so they were not very good at multi-tasking. This meant that there were noticeable decreases in performance whenever more than one application was running. Although only one operation could be started at a time, another one could be activated before the first one was finished but with each new operation the computer would run more slowly. Performance on these types of CPUs were largely dependent on their clock speeds, which was a measurement of their power.
#### Dual Core CPUs
A dual core CPU is a single CPU that has two cores and thus functions like two CPUs in one. Unlike single core CPUS where the processor had to switch back and forth between different sets of data streams if more than one operation was running, dual core CPUs can handle multitasking much more efficiently. To make the most of a dual core CPU, both the operating system and the programs running on it must have special code called SMT (simultaneous multi-threading technology) written into it. Dual core CPUs are faster than single core ones but not as fast the quad core CPUs that have superseded them.A dual core CPU is a single CPU that has two cores and thus functions like two CPUs in one. Unlike single core CPUS where the processor had to switch back and forth between different sets of data streams if more than one operation was running, dual core CPUs can handle multitasking much more efficiently. To make the most of a dual core CPU, both the operating system and the programs running on it must have special code called SMT (simultaneous multi-threading technology) written into it. Dual core CPUs are faster than single core ones but not as fast the quad core CPUs that have superseded them.
#### Quad Core CPUs
Quad Core CPUs are a further refinement of the multi-core CPU design and features four cores on a single CPU. Just as dual core CPUs could split the workload between two cores, quad cores allows for even greater multitasking. This doesn't mean that a single operation will be four times faster however, and unless the programs and applications running on it has SMT code, the speed increase will not be so noticeable. These types of CPUs are useful for people that need to run a lot of different programs at the same time as well as gamers, as there are games like the Supreme Commander series that are optimized for multi-core CPUs.
### More Information:
- [Central Processing Unit - Wikipedia](https://en.wikipedia.org/wiki/Central_processing_unit)
- [Technopedia](https://www.techopedia.com/definition/2851/central-processing-unit-cpu)
- [Simplified](https://www.bbc.com/bitesize/guides/zws8d2p/revision/1)
- [Simplified](https://www.bbc.com/bitesize/guides/zws8d2p/revision/1)
- [Techwalla](https://www.techwalla.com/articles/types-of-computer-cpu)