Computer Architectures - CIE A-Level Computer Science (15.1.2)

0.0(0)
studied byStudied by 0 people
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/12

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

13 Terms

1
New cards

SISD

Single Instruction, Single Data.

2
New cards

SISD architecture

A single processor fetching one instruction at a time and operating on one data source; strictly sequential execution (no parallelism).

3
New cards

SISD common usage

In early personal computers and any system that processes tasks strictly one after another.

4
New cards

SIMD

Single Instruction, Multiple Data.

5
New cards

SIMD system operation

Many "identical" processors all execute the same instruction simultaneously on different pieces of data.

6
New cards

Classic example of SIMD

A graphics card using one small processor per pixel to uniformly increase image brightness across all pixels at once.

7
New cards

Applications benefiting from SIMD

Image-processing, sound sampling, or any task where the same operation must be applied to a large set of independent data items.

8
New cards

MISD

Multiple Instruction, Single Data.

9
New cards

MISD architecture

Multiple processors each run different instructions on the same data stream; very uncommon (e.g. Space Shuttle flight-control used a form of MISD for reliability).

10
New cards

MIMD

Multiple Instruction, Multiple Data.

11
New cards

MIMD differences

Each processor runs its own instruction stream independently and works on its own partition of the data; true general-purpose parallelism.

12
New cards

MIMD usage

In multicore chips, supercomputers, distributed systems—any architecture where tasks and data can be partitioned and scheduled independently.

13
New cards

Parallel-processing software requirements

1) Processors must be able to communicate and transfer processed data between them.