Superword Level Parallelism

From HandWiki
Revision as of 22:58, 12 August 2020 by imported>QCDvac (simplify)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Superword level parallelism (SLP) is a vectorization technique based on loop unrolling and basic block vectorization. It is distinct from loop vectorization algorithms in that it can exploit parallelism of inline code, such as manipulating coordinates, color channels or in loops unrolled by hand.[1] It is available in the gcc compiler since version 4.3.

Also supported by LLVM.

References

External links