File: simd-intrinsics.rst

package info (click to toggle)
swiftlang 6.0.3-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,519,992 kB
  • sloc: cpp: 9,107,863; ansic: 2,040,022; asm: 1,135,751; python: 296,500; objc: 82,456; f90: 60,502; lisp: 34,951; pascal: 19,946; sh: 18,133; perl: 7,482; ml: 4,937; javascript: 4,117; makefile: 3,840; awk: 3,535; xml: 914; fortran: 619; cs: 573; ruby: 573
file content (49 lines) | stat: -rw-r--r-- 1,550 bytes parent folder | download | duplicates (21)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
.. title:: clang-tidy - portability-simd-intrinsics

portability-simd-intrinsics
===========================

Finds SIMD intrinsics calls and suggests ``std::experimental::simd`` (`P0214`_)
alternatives.

If the option :option:`Suggest` is set to `true`, for

.. code-block:: c++

  _mm_add_epi32(a, b); // x86
  vec_add(a, b);       // Power

the check suggests an alternative: ``operator+`` on ``std::experimental::simd``
objects.

Otherwise, it just complains the intrinsics are non-portable (and there are
`P0214`_ alternatives).

Many architectures provide SIMD operations (e.g. x86 SSE/AVX, Power AltiVec/VSX,
ARM NEON). It is common that SIMD code implementing the same algorithm, is
written in multiple target-dispatching pieces to optimize for different
architectures or micro-architectures.

The C++ standard proposal `P0214`_ and its extensions cover many common SIMD
operations. By migrating from target-dependent intrinsics to `P0214`_
operations, the SIMD code can be simplified and pieces for different targets can
be unified.

Refer to `P0214`_ for introduction and motivation for the data-parallel standard
library.

Options
-------

.. option:: Suggest

   If this option is set to `true` (default is `false`), the check will suggest
   `P0214`_ alternatives, otherwise it only points out the intrinsic function is
   non-portable.

.. option:: Std

   The namespace used to suggest `P0214`_ alternatives. If not specified, `std::`
   for `-std=c++20` and `std::experimental::` for `-std=c++11`.

.. _P0214: https://wg21.link/p0214