[AMDGPU] Make isScalarLoadLegal a member of AMDGPURegisterBankInfo. NFC.
[llvm-project.git] / openmp / docs / remarks / OMP132.rst
blob405c3e64a0e257a90adf91ac809c0f635e4a77fe
1 Generic-mode kernel is executed with a customized state machine that requires a fallback. [OMP132]
2 ==================================================================================================
4 .. _omp132:
6 This analysis remark indicates that a state machine rewrite occurred, but
7 could not be done fully because of unknown calls to functions that may contain
8 parallel regions. The state machine handles scheduling work between parallel
9 worker threads on the device when operating in generic-mode. If there are
10 unknown parallel regions it prevents the optimization from fully rewriting the
11 state machine.
13 Examples
14 --------
16 This will occur for any generic-mode kernel that may contain unknown parallel
17 regions. This is typically coupled with the :ref:`OMP133 <omp133>` remark.
19 .. code-block:: c++
21    extern void setup();
23    void foo() {
24    #pragma omp target
25    {
26      setup();
27      #pragma omp parallel
28      {
29        work();
30      }
31    }
32    }
34 .. code-block:: console
36    $ clang++ -fopenmp -fopenmp-targets=nvptx64 -O2 -Rpass-analysis=openmp-opt omp132.cpp
37    omp133.cpp:4:1: remark: Generic-mode kernel is executed with a customized state machine
38    that requires a fallback. [OMP132]
39    #pragma omp target
40    ^
42 Diagnostic Scope
43 ----------------
45 OpenMP target offloading analysis remark.