kokkos / kokkos.github.io

Source code for kokkos.org pages
https://kokkos.org
1 stars 12 forks source link

Kokkos Core: SIMD #67

Open crtrott opened 9 months ago

ldh4 commented 9 months ago

SIMD is a form of parallel processing that utilizes vector registers in a processor to invoke an instruction across its vector lanes. To exploit this data parallelism, compiler are equipped with automatic vectorization, which does not always guarantee this optimization. Because of this, manual vectorization is occasionally necessary using vendor provided SIMD intrinsics. Fortunately, the designs of vector data types and intrinsics are relatively similar that they can be abstracted. This talk will be about Kokkos SIMD, an abstract layer over vector types for SIMD intrinsics, covering its current capabilities and interface.

ldh4 commented 9 months ago

Kokkos_SIMD.pdf