1.1.2 Flashcards

1
Q

CISC

A

Complex instruction set computing, large number of instruction each taking multiple machine cycles to carry out.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

CISC advantages and disadvantages

A

Adv: complier has to do very little work to translate the high level language statement into assembly.

Dis: this complex instruction might take more than one machine/clock cycle to execute.
expensive to design and produce
gives off more heat

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

RISC

A

Aim is to use simple instructions that will be executed within a single machine/clock cycle

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

RISC advantages and disadvantages

A

Adv: Each instruction can be completed in a single clock cycle.
RISC instructions enquire fewer transistors and less complex hardware, leaving more room for general-purpose registers and cache.
Because all instructions are uniform in terms of execution time, pipelining is possible.
Lower energy requirements.

Dis: In the memory situation, we would need four lines of assembly rather than one before with CISC.
There are more lines of code required in the assembly version of high level code line Complier has to do more conversion work.
More RAM is needed to store the assembly instructions.
The process seems less efficient.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Difference between CISC and RISC

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Co-processor

A

Any additional processor used for a specialised task. A secondary processor designed to supplement the activities of the primary processor.

Purpose: to improve the overall speed of the computer by executing concurrently with the main CPU, aided by a highly bespoke set of electronics.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

GPUs

A

Initially used for rendering graphics. Used for processing many parallel streams of data at the same time.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Why are GPUs good for graphic rendering?

A

Good for graphic rendering because:
High number of calculations can be done in parallel.
Result of one RGB calculation is not dependant on another.
Mass calculations typically associated with graphics processing known as SIMD can take full advantage of parallel processing.
GPU will be able to perform a thousand floating-point operations much quicker due to the benefits of its bespoke design for parallel processing.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What are GPUs also good for?

A

Also good for any situation that requires processing thousands or even millions of simple calculations over and over on multiple points of data is quicker to perform on a GPU rather than a generic CPU.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

SIMD

A

A single instruction is executed on multiple different data streams. These instructions can be performed sequentially, taking advantage of pipelining, or in parallel using multiple processors.
Modern GPUs, containing Vector processors and array processors, are commonly SIMD systems.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

MIMD

A

Multiple autonomous processors perform operations on difference pieces of data, either independently or as part of shared memory space.

Common Usage: Most modern desktop / laptop / mobile processors are MIMD processors.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Parallel systems

A

An architecture where processors have more than one core allowing multiple processes to be run concurrently.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Parallel processing

A

Parallel processing is the simultaneous processing of data. There are a number of ways that parallel processing is carried out. There are also other ways to speed up processing.
- pipeline
- array processor
- multicore

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Advantages and disadvantages of parallel processing

A

Faster when handling large amounts of data,
Is not limited by the bus transfer rate (the Von Neumann bottleneck)
Can make maximum use of the CPU (pipeline method) in spite of the bottleneck

Only certain types of data are suitable for parallel processing. Data that relies on the result of a previous operation cannot be made parallel. For parallel processing, each data set must be independent of each other.
More costly in terms of hardware - multiple processing blocks needed.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

Multicore

A

more than one processing unit in a
(single) processor which can independently process instructions at the same time which results in higher performance.
Parallel systems accomplish a similar task however instead of requiring multiple cores they can complete tasks with a single core, by using threading.
Generally, multi-core systems perform better in larger projects than parallel systems.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

Explain why using a RISC processor rather than a CISC processor is likely to result in
increased battery life

A

RISC has a smaller instruction set (than CISC)
- Requires fewer transistors / less complex circuitry
- Means less power is required