Vector Processing | Computer Architecture & Organisation (CAO) - Computer Science Engineering (CSE) PDF Download

Vector Processing

  • In many science and engineering applications, the problems can be formulated in terms of vectors and matrices that lend themselves to vector processing. ·
  • Computers with vector processing capabilities are in demand in specialized applications. e.g.
    • Long-range weather forecasting
    • Petroleum explorations
    • Seismic data analysis
    • Medical diagnosis
    • Artificial intelligence and expert systems
    • Image processing
    • Mapping the human genome
  • To achieve the required level of high performance it is necessary to utilize the fastest and most reliable hardware and apply innovative procedures from vector and parallel processing techniques.

Vector Operations

  • Many scientific problems require arithmetic operations on large arrays of numbers.
  • A vector is an ordered set of a one-dimensional array of data items.
  • A vector V of length n is represented as a row vector by V=[v1,v2,…,Vn].
  • To examine the difference between a conventional scalar processor and a vector processor, consider the following Fortran DO loop:

DO 20 I = 1, 100
20      C(I) = B(I) + A(I)

  • This is implemented in machine language by the following sequence of operations.

Initialize I=0
20 Read A(I)
Read B(I)
Store C(I) = A(I)+B(I)
Increment I = I + 1
If I <= 100 go to 20
Continue

  • A computer capable of vector processing eliminates the overhead associated with the time it takes to fetch and execute the instructions in the program loop.
    C(1:100) = A(1:100) + B(1:100)
  • A possible instruction format for a vector instruction is shown in Fig. 4-11.
    • This assumes that the vector operands reside in memory.
  • It is also possible to design the processor with a large number of registers and store all operands in registers prior to the addition operation.
    • The base address and length in the vector instruction specify a group of CPU registers.

Vector Processing | Computer Architecture & Organisation (CAO) - Computer Science Engineering (CSE)

Matrix Multiplication

  • The multiplication of two n x n matrices consists of n2 inner products or n3 multiply-add operations.
    • Consider, for example, the multiplication of two 3 x 3 matrices A and B.
    • c11= a11b11+ a12b21+ a13b31 
    • This requires three multiplication and (after initializing c11 to 0) three additions.
  • In general, the inner product consists of the sum of k product terms of the form
    C= A1B1+A2B2+A3B3+…+AkBk.
    • In a typical application k may be equal to 100 or even 1000.
  • The inner product calculation on a pipeline vector processor is shown in Fig. 4-12.

Vector Processing | Computer Architecture & Organisation (CAO) - Computer Science Engineering (CSE)

Vector Processing | Computer Architecture & Organisation (CAO) - Computer Science Engineering (CSE)

Memory Interleaving

  • Pipeline and vector processors often require simultaneous access to memory from two or more sources.
    • An instruction pipeline may require the fetching of an instruction and an operand at the same time from two different segments.
    • An arithmetic pipeline usually requires two or more operands to enter the pipeline at the same time.
  • Instead of using two memory buses for simultaneous access, the memory can be partitioned into a number of modules connected to a common memory address and data buses.
    • A memory module is a memory array together with its own address and data registers.
  • Fig. 4-13 shows a memory unit with four modules.

Vector Processing | Computer Architecture & Organisation (CAO) - Computer Science Engineering (CSE)

  • The advantage of a modular memory is that it allows the use of a technique called interleaving.
  • In an interleaved memory, different sets of addresses are assigned to different memory modules.
  • By staggering the memory access, the effective memory cycle time can be reduced by a factor close to the number of modules.

Supercomputers

  • A commercial computer with vector instructions and pipelined floating-point arithmetic operations is referred to as a supercomputer.
    • To speed up the operation, the components are packed tightly together to minimize the distance that the electronic signals have to travel.
  • This is augmented by instructions that process vectors and combinations of scalars and vectors.
  • A supercomputer is a computer system best known for its high computational speed, fast and large memory systems, and the extensive use of parallel processing.
    • It is equipped with multiple functional units and each unit has its own pipeline configuration.
  • It is specifically optimized for the type of numerical calculations involving vectors and matrices of floating-point numbers.
  • They are limited in their use to a number of scientific applications, such as numerical weather forecasting, seismic wave analysis, and space research.
  • A measure used to evaluate computers in their ability to perform a given number of floating-point operations per second is referred to as flops.
  • A typical supercomputer has a basic cycle time of 4 to 20 ns.
  • The examples of supercomputer:
  • Cray-1: it uses vector processing with 12 distinct functional units in parallel; a large number of registers (over 150); multiprocessor configuration (Cray X-MP and Cray Y-MP)
    • Fujitsu VP-200: 83 vector instructions and 195 scalar instructions; 300 megaflops
The document Vector Processing | Computer Architecture & Organisation (CAO) - Computer Science Engineering (CSE) is a part of the Computer Science Engineering (CSE) Course Computer Architecture & Organisation (CAO).
All you need of Computer Science Engineering (CSE) at this link: Computer Science Engineering (CSE)
20 videos|86 docs|48 tests

Top Courses for Computer Science Engineering (CSE)

FAQs on Vector Processing - Computer Architecture & Organisation (CAO) - Computer Science Engineering (CSE)

1. What is vector processing?
Ans. Vector processing is a type of computer processing that involves performing multiple calculations or operations simultaneously on multiple data elements using vectors. It enables the execution of multiple instructions in parallel, which can significantly increase the speed and efficiency of certain tasks.
2. How does vector processing differ from scalar processing?
Ans. Vector processing differs from scalar processing in that it operates on multiple data elements simultaneously, whereas scalar processing operates on a single data element at a time. Vector processors are optimized for handling large amounts of data in parallel, making them suitable for tasks that involve repetitive calculations or data-intensive computations.
3. What are the advantages of vector processing?
Ans. Vector processing offers several advantages, including: - Increased performance: By performing multiple calculations simultaneously, vector processing can significantly reduce the time required to complete certain tasks. - Efficient handling of large datasets: Vector processing is particularly effective for applications that involve processing large amounts of data, such as scientific simulations, data analysis, and image processing. - Simplified programming: Vector processors often provide specialized instructions and libraries that simplify the programming process, allowing developers to leverage the power of vector processing without extensive code optimization.
4. What are some common applications of vector processing?
Ans. Vector processing is commonly used in various fields and applications, including: - Scientific computing: Vector processing is well-suited for scientific simulations and calculations, such as weather forecasting, computational fluid dynamics, and molecular dynamics. - Digital signal processing: Tasks like audio and video processing, image recognition, and compression can benefit from vector processing due to their data-intensive nature. - High-performance computing: Supercomputers and parallel processing systems often employ vector processors to handle complex computations efficiently. - Graphics processing: Vector processing is utilized in graphics cards to accelerate rendering, physics simulations, and other graphics-related tasks.
5. Are there any limitations or challenges associated with vector processing?
Ans. While vector processing offers numerous benefits, it also has certain limitations and challenges, including: - Limited applicability: Not all types of computations can be effectively parallelized using vector processing. Tasks with complex dependencies or irregular data access patterns may not benefit significantly from vectorization. - Memory requirements: Vector processing often requires data to be stored in contiguous memory locations, which can be challenging when working with large datasets or irregular data structures. - Programming complexity: While vector processors provide specialized instructions and libraries, effectively utilizing them often requires expertise in vectorization techniques and optimizing code for specific hardware architectures.
20 videos|86 docs|48 tests
Download as PDF
Explore Courses for Computer Science Engineering (CSE) exam

Top Courses for Computer Science Engineering (CSE)

Signup for Free!
Signup to see your scores go up within 7 days! Learn & Practice with 1000+ FREE Notes, Videos & Tests.
10M+ students study on EduRev
Related Searches

ppt

,

Objective type Questions

,

MCQs

,

pdf

,

video lectures

,

Vector Processing | Computer Architecture & Organisation (CAO) - Computer Science Engineering (CSE)

,

past year papers

,

study material

,

Semester Notes

,

Extra Questions

,

Viva Questions

,

Vector Processing | Computer Architecture & Organisation (CAO) - Computer Science Engineering (CSE)

,

Important questions

,

Vector Processing | Computer Architecture & Organisation (CAO) - Computer Science Engineering (CSE)

,

Summary

,

shortcuts and tricks

,

Sample Paper

,

Exam

,

mock tests for examination

,

Free

,

Previous Year Questions with Solutions

,

practice quizzes

;