meta data for this page
This is an old revision of the document!
basics
- loading / storing data to vectors:
- from constant array Constructing a vector from a literal bit pattern
- load all bytes from pointed memory ``vld1_``
- load from interleaved memory - support up to every 4th element (usefull for RGBA / CMYK): ``vld2_`` ``vld3_`` ``vld4_``.
- load from interleaved/random memory - possible to load one vector element (lane) from given pointer: ``vld1_lane_``
- load using lookup tables (permutation) - possible to load 8byte vector using 2nd 8 bytes vector with memory position indexes.
- combine 8 bit values