1.2 Types of processors Flashcards

1
Q

what is a RISC processor?

A

RISC is a reduced instruction set computer, and has an instruction set architecture has a set of attributes that allows it to have a lower cycles per instruction.

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

what is a CISC processor?

A

CISC is a Complex instruction set computer, where single instructions can execute several low-level operations or are capable of multi-step operations or addressing modes within single instructions.

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

features of CISC:

A
  • Used in laptops and desktop computers
  • Has more complex hardware
  • Multiple machine cycles per instruction
  • Physically larger in size and require more silicon thus more expensive
  • Greater energy consumption
  • More intensive tasks will do better with CISC
  • Cant support pipe-lining
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

features of RISC:

A
  • Used in smart phones and tablets
  • Has simpler hardware
  • Single machine cycle per instruction
  • Smaller in size as less complex circuitry is required less silicon thus cheaper
  • Lower energy requirements and can go into sleep mode
  • Run at lower clock speed but can perform simpler tasks faster than CISC
  • Can support pipe-lining
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

what is pipe-lining?

A

pipe-lining is starting the next step before finishing the first one by passing it into the next space. pipe-lining only works is the next instruction can be predicted.
If the wrong instruction is fetched the system “flushes the pipe”, and retrieves the correct instruction.

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

what is a serial system?

A

with a serial system the problem should be able to be split down into discrete pieces of work that can be solved simultaneously. the system should be able to execute multiple program instructions at any moment in time, and be solved in less time with multiple computer resources than with a single computer resource.

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

what is a parallel system?

A

With all parallel systems, the various processors in the CPU have to be able to communicate with each other to ensure that any changes to the data being processed is updated with the other processors.
There is an additional level of complexity as threads have to be combined in order to provide the solution to the original problem

The complexity of parallel systems made it be quicker just to execute the instruction on a single core however as programmers have been adapt to writing for parallel systems.

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

what are co-processors?

A

Co-processors are additional processors which are designed for very specific tasks to help the CPU.
The co-processor and the central processor operate on different tasks at the same time which has the effect of speeding up the overall execution of the program. This is the reasons why computers with graphics cards run video games better.

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

examples of co-processors?

A

Common examples of co processors are:

  • FPU: floating point unit.
  • DSP: digital signal processor. (sound card)
  • GPU: graphics processing unit.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

what is a Single instruction, multiple data (SIMD) system?

A

Single instruction: all processing units execute the same instruction at any given clock cycle.
Multiple data: each processing unit can operate on a different data element.

-Best suited for specialized problems characterized by a high degree of regularity, such as graphics/image processing.

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

what is a Multiple instruction, single data (MISD) system?

A

Multiple instruction: each processing unit operates on the data independently via separate instruction streams.
Single data: a single data stream is fed into multiple processing units.

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

what is a Multiple instructions multiple data (MIMD) system?

A

Multiple instruction: every processor may be executing a different instruction stream
Multiple data: every processor may be working with a different data stream.
-currently, the most common type of parallel computer-most modern supercomputers fall into this category.

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