[flang][cuda] Do not register global constants (#118582)
[llvm-project.git] / openmp / docs / remarks / OMP131.rst
blob8b7b999d85369915eae58b6012e133fa5f924e9b
1 Rewriting generic-mode kernel with a customized state machine. [OMP131]
2 =======================================================================
4 .. _omp131:
6 This optimization remark indicates that a generic-mode kernel on the device was
7 specialized for the given target region. When offloading in generic-mode, a
8 state machine is required to schedule the work between the parallel worker
9 threads. This optimization specializes the state machine in cases where there is
10 a known number of parallel regions inside the kernel. A much simpler state
11 machine can be used if it is known that there is no nested parallelism and the
12 number of regions to schedule is a static amount.
14 Examples
15 --------
17 This optimization should occur on any generic-mode kernel that has visibility on
18 all parallel regions, but cannot be moved to SPMD-mode and has no nested
19 parallelism.
21 .. code-block:: c++
23    #pragma omp declare target
24    int TID;
25    #pragma omp end declare target
27    void foo() {
28    #pragma omp target
29    {
30     TID = omp_get_thread_num();
31     #pragma omp parallel
32     {
33       work();
34     }
35    }
36    }
38 .. code-block:: console
40    $ clang++ -fopenmp -fopenmp-targets=nvptx64 -O2 -Rpass=openmp-opt omp131.cpp
41    omp131.cpp:8:1: remark: Rewriting generic-mode kernel with a customized state machine. [OMP131]
42    #pragma omp target
43    ^
45 Diagnostic Scope
46 ----------------
48 OpenMP target offloading optimization remark.