Skip to content
MathsGenie logo
Quick links
Open app

Course home

  1. AS Level
  2. Computer Science OCR
  3. Revision guides

Types of processor

What you'll learn

  • How CISC and RISC processors differ, and where each is commonly used.
  • Why GPUs are excellent at some non-graphics tasks as well as graphics.
  • How multicore processors and parallel systems can speed up work — and why speed-up is not automatic.

Starting point: what is a processor?

A processor, often called a CPU for Central Processing Unit, is the part of a computer system that executes program instructions. It repeatedly fetches instructions from memory, decodes what they mean, and executes them.

An instruction is a low-level command the processor can carry out, such as loading a value from memory, adding two values, or jumping to another part of a program.

Definition

Instruction set

An instruction set is the complete collection of machine-code instructions that a particular processor design can understand and execute.

A register is a very small, very fast storage location inside the processor. A clock cycle is one tick of the processor’s clock; processors use clock cycles to coordinate the stages of instruction execution.

The topic of “types of processor” is mainly about how processors are designed to execute instructions and how they share work.

CISC and RISC processors

Two important processor design approaches are CISC and RISC.

Definition

CISC and RISC

CISC stands for Complex Instruction Set Computer. RISC stands for Reduced Instruction Set Computer. They describe different approaches to the size and complexity of the processor’s instruction set.

CISC tries to provide powerful instructions that can do quite a lot in one machine-code instruction. RISC uses fewer, simpler instructions, so a complex task is built from several simple instructions.

Some complex instructions are decoded into micro-operations, which are smaller internal steps carried out inside the processor.

Here is the big-picture contrast between CISC and RISC instruction design.

CISC and RISC processor comparison

CISC processors

A CISC processor has a large instruction set, often with complex instructions. One instruction might load values from memory, carry out an arithmetic operation, and store the result.

Typical CISC features include:

  • Large instruction set with many specialised instructions.
  • Variable-length instructions, so different instructions may take different amounts of memory.
  • Instructions may take several clock cycles to complete.
  • More complex control hardware, because the processor must decode more complicated instructions.
  • Programs may need fewer machine-code instructions, which can reduce program size.

CISC processors are commonly associated with desktop and laptop processors that need strong compatibility with existing software. For example, many PC processors use CISC-style instruction sets because of backwards compatibility, meaning newer processors can still run older software.

RISC processors

A RISC processor has a smaller instruction set made up of simpler instructions. A complex operation is normally split into several basic steps.

Typical RISC features include:

  • Smaller instruction set with simpler instructions.
  • Often fixed-length instructions, making them easier to fetch and decode.
  • Many instructions are designed to complete in one clock cycle in the simplified A-Level comparison.
  • More use of general-purpose registers.
  • A load/store architecture, where data must usually be loaded from memory into registers before the ALU processes it, then stored back afterwards.
  • Easier pipelining, where different stages of several instructions overlap.

RISC processors are commonly used in smartphones, tablets, embedded systems, and low-power devices. ARM-based processors are a well-known example of RISC-style design.

Comparing CISC and RISC

FeatureCISCRISC
Instruction setLarge and complexSmaller and simpler
Instruction lengthOften variableOften fixed
Work per instructionCan do more in one instructionUsually does one simple operation
Clock cyclesSome instructions take several cyclesMany instructions designed to take one cycle
Memory accessSome instructions can work directly with memoryUsually load/store only
Control unitMore complexSimpler
PipeliningHarder to optimiseEasier to optimise
Code sizeOften smallerCan be larger
Common usesPCs, laptops, compatibility-focused systemsMobile, embedded, low-power systems
Key Idea

CISC vs RISC

CISC focuses on doing more work per instruction; RISC focuses on making each instruction simple, regular, and easy to pipeline.

Example

Choosing a processor style

A manufacturer is designing a battery-powered smart thermostat. It runs a small control program, reads sensors, controls heating, and must use very little power.

  1. The main constraint is power consumption, because the device is battery-powered and does not need to run large desktop applications.
  2. A RISC-style processor is a good fit because simple instructions and simpler control hardware can reduce power use and heat output.
  3. The possible disadvantage is that the program may need more machine-code instructions, but the thermostat’s software is small, so this is unlikely to matter much.
  4. A CISC-style processor would be more attractive if the device needed compatibility with existing PC software, which it does not.
Common Mistake

RISC is not automatically faster

Do not write “RISC is faster than CISC” as a blanket statement. RISC often makes pipelining easier, but real performance depends on clock speed, cache, compiler quality, workload, and the exact processor design.

GPUs

A GPU, or Graphics Processing Unit, is a processor designed to perform many similar calculations at the same time.

Originally, GPUs were designed for graphics: drawing pixels, applying textures, calculating lighting, and rendering 3D scenes. The key idea is that graphics work often involves doing the same kind of calculation to millions of pixels or vertices.

Definition

Data parallelism

Data parallelism means applying the same operation to many separate pieces of data at the same time, such as processing many pixels in an image.

A CPU usually has a small number of powerful cores optimised for varied, general-purpose tasks. A GPU has many simpler processing units optimised for high-throughput parallel work.

This diagram compares a single-core CPU, a multicore CPU, and a GPU.

CPU, multicore CPU and GPU parallelism

Graphics uses of GPUs

GPUs are used for:

  • Rendering 2D and 3D graphics.
  • Applying lighting, shadows, and textures in games.
  • Processing video and animation.
  • Driving high-resolution displays.
  • Accelerating user interfaces and visual effects.

Non-graphics uses of GPUs

Using a GPU for non-graphics computation is often called GPGPU, meaning General-Purpose computing on Graphics Processing Units.

GPUs are useful for non-graphics tasks when the task can be split into lots of independent calculations. Examples include:

  • Machine learning and neural network training.
  • Scientific simulations, such as weather, physics, or molecular modelling.
  • Image and video processing, such as filters or object detection.
  • Cryptocurrency mining and hash calculations.
  • Financial modelling and large-scale numerical analysis.
  • Password cracking or security testing where many hashes are checked in parallel.
Key Idea

When GPUs shine

A GPU is best when the same calculation must be repeated across a huge amount of independent data.

Example

Deciding whether a GPU is suitable

A program needs to blur a 4-megapixel image by applying the same filter calculation to each pixel.

  1. Each pixel can be processed using the same calculation, so the task has strong data parallelism.
  2. Most pixel calculations are independent, so thousands of GPU processing units can work on different pixels at the same time.
  3. A GPU is suitable here because the workload is large and repetitive.
  4. If the task were instead a small decision-making program with many branches and dependencies, a CPU would usually be more suitable.
Common Mistake

GPUs have overheads

A GPU is not always better. Moving data between CPU memory and GPU memory can take time, and tasks with lots of branching or dependencies may not use GPU hardware efficiently.

Multicore processors

A core is an independent processing unit inside a CPU. It can fetch, decode, and execute instructions.

A multicore processor is a single CPU chip containing two or more cores. For example, a quad-core CPU has four cores.

A thread is a sequence of instructions that can be scheduled to run independently. A program may have one thread or many threads. The operating system can run different threads on different cores.

Benefits of multicore processors

Multicore processors can improve performance by allowing multiple threads to run at the same time. This helps with:

  • Multitasking, such as running a browser, music player, and antivirus software.
  • Programs designed with multiple threads, such as video editing or 3D rendering.
  • Server workloads, where many users’ requests can be handled at once.
  • Responsiveness, because background tasks can run on separate cores.

They can also be more energy-efficient than trying to make one core run at a much higher clock speed, which would create more heat.

Limits of multicore processors

More cores do not automatically mean proportionally faster execution.

Some parts of a program may be sequential, meaning they must happen in a fixed order. There may also be dependencies, where one calculation needs the result of another before it can begin.

Parallel programs can also suffer from:

  • Overhead from splitting work into threads and combining results.
  • Synchronisation delays when threads must wait for each other.
  • Shared-memory problems, such as two threads trying to update the same data.
  • Memory bandwidth limits if many cores need data from memory at once.

Parallel systems

A parallel system uses multiple processors, cores, or computers to work on a problem at the same time.

A multicore CPU is one form of parallel system, but parallel processing can also involve GPUs, multiple CPUs, or clusters of networked computers.

There are two useful forms to recognise:

  • Task parallelism: different tasks run at the same time, such as one core handling user input while another saves a file.
  • Data parallelism: the same task is applied to different chunks of data, such as a GPU processing many pixels.
Example

Estimating multicore speed-up

A task takes 800 ms on one core. Of this, 200 ms must be done sequentially, but 600 ms can be split evenly across four cores. Ignore overheads.

  1. Separate the work into the sequential part and the parallel part: 200 ms must stay sequential, while 600 ms can be divided across the four cores.
  2. Calculate the ideal time for the parallel part: 600 ms÷4=150 ms600\text{ ms} \div 4 = 150\text{ ms}600 ms÷4=150 ms.
  3. Add the sequential part back on: Tnew=200 ms+150 ms=350 msT_{\text{new}} = 200\text{ ms} + 150\text{ ms} = 350\text{ ms}Tnew​=200 ms+150 ms=350 ms.
  4. Compare old and new times: 800÷350≈2.3800 \div 350 \approx 2.3800÷350≈2.3, so the speed-up is about 2.3 times, not 4 times.
Common Mistake

More cores does not mean equal speed-up

If a program cannot be split into independent threads, extra cores may sit idle. Always mention software design, dependencies, and overheads when explaining multicore performance.

Tip

Spotting the right processor type

If the question says “same calculation on lots of independent data”, think GPU. If it says “several threads or tasks at once”, think multicore or parallel processing. If it asks about instruction design, compare CISC and RISC.

Summary

CISC, RISC, GPUs, multicore processors, and parallel systems are all responses to the same broad challenge: how to get useful work done efficiently.

CISC and RISC are mainly about instruction set design. GPUs are about massive data-parallel throughput. Multicore and parallel systems are about sharing work across processing units.

Exam technique

In the exam

  1. For CISC vs RISC, compare instruction complexity, instruction length, clock cycles, memory access, pipelining, and typical uses.
  2. For GPU questions, state that GPUs contain many simpler processing units and are suited to data-parallel tasks; include a non-graphics example if asked.
  3. For multicore and parallel systems, explain that speed-up depends on whether the program can be split into independent threads, and mention overheads or dependencies.
Self review

Check yourself

  • Why might a RISC processor be suitable for a smartphone or embedded device?
  • Give one graphics use and one non-graphics use of a GPU.
  • Why might doubling the number of cores fail to halve the execution time?
PreviousNext

How was this guide?

Teach Genie

Review Types of processor by teaching Genie

Teach it back in your own words, spot gaps, and remember it better.

Start teaching
Genie and Baby Genie

Lesson

Recap your knowledge with an interactive lesson

8 minute activity

Start lesson

A processor, or CPU, executes program instructions. It repeatedly fetches an instruction from memory, decodes it, and executes it.

An instruction set is the full collection of machine-code instructions that a processor design can understand. Registers are tiny, very fast storage locations inside the processor, and a clock cycle is one tick used to time execution.

When we talk about types of processor, we are usually comparing either instruction-set design, such as CISC and RISC, or ways of sharing work, such as GPUs and multicore systems.

Flashcards

Remember key concepts with flashcards

22 flashcards

Practice flashcards

An [     ] is the complete collection of [     ] a processor design can understand and execute.

Types of processor Revision Guide

  1. AS Level
  2. /Computer Science
  3. /Types of processor

Revision guides