DEV Community

Scott Slatton
Scott Slatton

Posted on

How Your CPU Can Nibble on a Bit

Anatomy of the CPU

The CPU (Central Processing Unit) is the brain of your entire computer. It crunches through computations and spits out new information that we can use. I know that sounds very abstract and kind of a “duh” statement so I’d like to go ahead and dig into this a little bit. Let’s start out with the hardware and work our way in. When you type your source code in Ruby, Javascript or C# that high level, human readable code gets broken down and then executed by the CPU lets see what happens when you hit the “Run” button or when your browser stumbles upon some Javascript.

“The simplest computer is just a light switch.” -- My first boss at a PC repair shop.

It’s amazing how oversimplified this statement seems, which it totally is, but it’s also completely true. A CPU just computes ones and zeros, on or off. But we need our computers to crunch hundreds of thousands or millions of calculations per second. How is this achieved? CPU’s are basically a huge network of transistors, turning on or off. The rate at which they can flip these switches is known as “Clock speed”, measured in Hertz.

CPU’s used to be made with vacuum tubes, but these were large, expensive and prone to failure. Vacuum tubes also used quite a large amount of energy and were readily replaced by transistors when they became available in the mid-1960’s.

Just speaking from a hardware standpoint, you only need the CPU, power supply, RAM, and a motherboard in order to run your computer. RAM (Read Access Memory) is volatile meaning that it is wiped from existence each time electricity stops running through it. There are several different types of RAM, the one that you probably think of when that word is said are the sticks attached to the main motherboard. This is only one type however and their main utility is that they are large, fast, and physically placed close by to the CPU. There are even faster and closer caches of RAM placed on CPU die though. These caches just store the information that the CPU is most likely to need next, like the variables you just declared and assigned. If you want any of this data to be stored after the power is turned off this is where a hard drive would come into play.

To sum up: Once your computer hits some code it comes in as a stream of instructions to the CPU which then utilizes its RAM to store bits for later use.

Intel 4790k and a 5820k 6 core processor

CPU's can vary in size because the requirements of the CPU may be different. In the picture above the CPU on the right was made to support larger amounts of memory and stores more physical cores on the die itself.

Multi-threading vs Single Threading

Before we get into single threading and multi-threading, let's talk about what a thread is in regards to cpu functionality.

“In computer science, a thread of execution is the smallest sequence of programmed instructions that can be managed independently by a scheduler, which is typically a part of the operating system.” -- Wikipedia

So a single thread can crunch through a stream of data sent through a program while having the order of what is actually being calculated managed beforehand and re-assembled after the calculation has completed. In real world terms, this means that Javascript (an interpreted language) is broken down by its JIT (Just in Time) compiler from top to bottom and fed into the CPU. This is why ordering your code is so important in Javascript and why hoisting is used.

Now knowing what a single thread is, you probably now understand what multi-threading is. This is where multiple CPUs (also called “cores”) are placed adjacently on the same die and can crunch calculations from multiple sources at the same time.

Concurrency & Parallelism

From here I’d like to talk about the above stated terms because once we get into multi-threading, we’re talking about completing multiple tasks at the same time.

You can think of parallelism as a cook in a restaurant making dish after dish after dish all day. Maybe they have to switch between cutting celery while the chicken is cooking but they’ll return to take the chicken out of the oven before it burns.

A popular form of parallelism comes from Intel. Their Hyperthreading technology splits a physical CPU core into two logical cores to optimize wait times between tasks.

Concurrency on the other hand is like having multiple chefs in the kitchen cooking completely different meals entirely independent from one another.

Click Here for a much more in-depth article on this topic.

Oldest comments (0)