1 / 1

What is meant by vectorization?

Effective vectorization comes from a combination of efficient data movement and recognition of vectorization opportunities in the program itself. Many things get in the way of vectorization: poor data layout, C/C language limitations, required compiler conservatism, and poor program structure. We will start with the three approaches to vectorization that should be of most interest, look at a six-step method that may help you, and finally,

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 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.

More Related