in CO and Architecture edited by
4,809 views
3 votes
3 votes

Which of the following architecture is/are not suitable for realising SIMD?

  1. Vector processor
  2. Array processor
  3. Von Neumann
  4. All of the above
in CO and Architecture edited by
4.8k views

2 Answers

9 votes
9 votes
Best answer

Answer :Von Neumann

SIMD : Short for single instruction, multiple data. A type of parallel computing architecture that is classified under Flynn's taxonomy. A single computer instruction perform the same identical action (retrieve, calculate, or store) simultaneously on two or more pieces of data

See Why : https://www.quora.com/What-computers-do-not-use-a-von-Neumann-architecture

selected by
0 votes
0 votes
→ Single instruction, multiple data (SIMD) is a class of parallel computers in Flynn's taxonomy. It describes computers with multiple processing elements that perform the same operation on multiple data points simultaneously. Such machines exploit data level parallelism, but not concurrency: there are simultaneous (parallel) computations, but only a single process (instruction) at a given moment
→ The von Neumann architecture is also known as the von Neumann model or Princeton architecture consists of the following components:
->A processing unit that contains an arithmetic logic unit and processor registers
->A control unit that contains an instruction register and program counter
->Memory that stores data and instructions
->External mass storage
->Input and output mechanisms
Answer:

Related questions