typo fixes (#21229)

This commit is contained in:
rdfriesen
2018-11-08 04:46:50 -05:00
committed by Niraj Nandish
parent 4a5a4be598
commit c0115cae0a

View File

@ -11,9 +11,9 @@ CPU speeds are measured in gigahertz (GHz). For every gigahertz of speed, a CPU
[Gigahertz](https://en.wikipedia.org/wiki/Hertz) is not the only determining factor in the actual speed of a processor, as different processors with the same gigahertz speed (also known as clock speed) may perform real-world tasks at different speeds due to using different sets of instructions to perform these tasks. These instruction sets are called CPU architectures.
Most modern CPUs use a 64-bit architecture, which means they use 64-bit long memory adresses. Older CPUs used 32-bit, 16-bit, and even 8-bit architectures. The largest number a 64-bit CPU can store is 18,446,744,073,709,552,000. A CPU needs memory adresses to get specified values from the RAM. If we call the length of the memory adresses n, 2^n is the amount of memory cells a CPU can adress.
Most modern CPUs use a 64-bit architecture, which means they use 64 bit long memory addresses. Older CPUs used 32-bit, 16-bit, and even 8-bit architectures. The largest number a 64-bit CPU can store is 18,446,744,073,709,552,000. A CPU needs memory addresses to get specified values from the RAM. If we call the length of the memory addresses n, 2^n is the amount of memory cells a CPU can address.
An instruction cycle for a CPU is called the fetch-decode-execute cycle - where the computer retrieves a instruction from its memory, deetermines which instruction it fetched and what it does, and then carries out said instrucitons.
An instruction cycle for a CPU is called the fetch-decode-execute cycle - where the computer retrieves an instruction from its memory, determines which instruction it fetched and what it does, and then carries out said instructions.
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 ablility to be overclocked.
@ -31,8 +31,7 @@ There are two primary manufacturers of computer microprocessors. Intel and Advan
<b> Manufacturers of mobile microprocessors </b>
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 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. The improvements allow for things like 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.
#### More Information:
* <a href='https://en.wikipedia.org/wiki/Central_processing_unit' target='_blank' rel='nofollow'>Wikipedia</a>