1 / 1

What is meant by vectorization?

Vectorization, in simple words, means optimizing the algorithm so that it can utilize SIMD instructions in the processors. AVX, AVX2 and AVX512 are the instruction sets (Intel) that perform same operation on multiple data in one instruction. For e.g. AVX512 means you can operate on 16 integer values (4 bytes) at a time

beta2
Download Presentation

What is meant by vectorization?

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. What is meant by vectorization? Vectorization is the process of converting an algorithm from operating on a single value at a time to operating on a set of values (vector) at one time. Modern CPUs provide direct support for vector operations where a single instruction is applied to multiple data (SIMD). Vectorization, in simple words, means optimizing the algorithm so that it can utilize SIMD instructions in the processors.

More Related