|
NAMEllvmopenmp - LLVM/OpenMP 19.1.7 NOTE: This document is a work in progress and most of the
expected content is not yet available. While you can expect changes, we always
welcome feedback and additions. Please post on the Discourse forums
(Runtimes - OpenMP)..
OpenMP impacts various parts of the LLVM project, from the frontends (Clang and Flang), through middle-end optimizations, up to the multitude of available OpenMP runtimes. A high-level overview of OpenMP in LLVM can be found here. OPENMP IN LLVM --- DESIGN OVERVIEWLLVM/OpenMP RuntimesThere are four distinct types of LLVM/OpenMP runtimes: the host runtime LLVM/OpenMP Host Runtime (libomp), the target offloading runtime LLVM/OpenMP Target Host Runtime (libomptarget), the target offloading plugin LLVM/OpenMP Target Host Runtime Plugins (libomptarget.rtl.XXXX), and finally the target device runtime LLVM/OpenMP Target Device Runtime (libomptarget-ARCH-SUBARCH.bc). For general information on debugging OpenMP target offloading applications, see LIBOMPTARGET_INFO and Debugging LLVM/OpenMP Host Runtime (libomp)An early (2015) design document for the LLVM/OpenMP host runtime, aka. libomp.so, is available as a pdf. Environment VariablesOMP_CANCELLATIONEnables cancellation of the innermost enclosing region of the type specified. If set to true, the effects of the cancel construct and of cancellation points are enabled and cancellation is activated. If set to false, cancellation is disabled and the cancel construct and cancellation points are effectively ignored. NOTE: Internal barrier code will work differently depending on
whether cancellation is enabled. Barrier code should repeatedly check the
global flag to figure out if cancellation has been triggered. If a thread
observes cancellation, it should leave the barrier prematurely with the return
value 1 (and may wake up other threads). Otherwise, it should leave the
barrier with the return value 0.
Enables (true) or disables (false) cancellation of the innermost enclosing region of the type specified. Default: false OMP_DISPLAY_ENVEnables (true) or disables (false) the printing to stderr of the OpenMP version number and the values associated with the OpenMP environment variables. Possible values are: true, false, or verbose. Default: false OMP_DEFAULT_DEVICESets the device that will be used in a target region. The OpenMP routine omp_set_default_device or a device clause in a parallel pragma can override this variable. If no device with the specified device number exists, the code is executed on the host. If this environment variable is not set, device number 0 is used. OMP_DYNAMICEnables (true) or disables (false) the dynamic adjustment of the number of threads. Default: false OMP_NESTEDWARNING: Deprecated. Please use OMP_MAX_ACTIVE_LEVELS to
control nested parallelism
Enables (true) or disables (false) nested parallelism. Default: false OMP_NUM_THREADSSets the maximum number of threads to use for OpenMP parallel regions if no other value is specified in the application. The value can be a single integer, in which case it specifies the number of threads for all parallel regions. The value can also be a comma-separated list of integers, in which case each integer specifies the number of threads for a parallel region at that particular nesting level. The first position in the list represents the outer-most parallel nesting level, the second position represents the next-inner parallel nesting level, and so on. At any level, the integer can be left out of the list. If the first integer in a list is left out, it implies the normal default value for threads is used at the outer-most level. If the integer is left out of any other level, the number of threads for that level is inherited from the previous level. Default: The number of processors visible to the operating system on which the program is executed. Syntax: OMP_NUM_THREADS=value[,value]* Example: OMP_NUM_THREADS=4,3 OMP_PLACESSpecifies an explicit ordered list of places, either as an abstract name describing a set of places or as an explicit list of places described by non-negative numbers. An exclusion operator, !, can also be used to exclude the number or place immediately following the operator. For explicit lists, an ordered list of places is specified with each place represented as a set of non-negative numbers. The non-negative numbers represent operating system logical processor numbers and can be thought of as an OS affinity mask. Individual places can be specified through two methods. Both the examples below represent the same place.
<lower-bound>, <lower-bound> + <stride>, ..., <lower-bound> + (<length> - 1) * <stride> A place list can also be specified using the same interval notation: {place}:<length>[:<stride>]. This represents the list of length <length> places determined by the following: {place}, {place} + <stride>, ..., {place} + (<length>-1)*<stride>
Where given {place} and integer N, {place} + N = {place with every number offset by N}
Example: {0,3,6}:4:1 represents {0,3,6}, {1,4,7}, {2,5,8}, {3,6,9}
Examples of explicit lists: These all represent the same set of places OMP_PLACES="{0,1,2,3},{4,5,6,7},{8,9,10,11},{12,13,14,15}"
OMP_PLACES="{0:4},{4:4},{8:4},{12:4}"
OMP_PLACES="{0:4}:4:4"
NOTE: When specifying a place using a set of numbers, if any
number cannot be mapped to a processor on the target platform, then that
number is ignored within the place, but the rest of the place is kept intact.
If all numbers within a place are invalid, then the entire place is removed
from the place list, but the rest of place list is kept intact.
The abstract names listed below are understood by the run-time environment:
The abstract name may be appended by a positive number in parentheses to denote the length of the place list to be created, that is abstract_name(num-places). If the optional number isn't specified, then the runtime will use all available resources of type abstract_name. When requesting fewer places than available on the system, the first available resources as determined by abstract_name are used. When requesting more places than available on the system, only the available resources are used. Examples of abstract names: OMP_PLACES=threads OMP_PLACES=threads(4) OMP_PROC_BIND (Windows, Linux)Sets the thread affinity policy to be used for parallel regions at the corresponding nested level. Enables (true) or disables (false) the binding of threads to processor contexts. If enabled, this is the same as specifying KMP_AFFINITY=scatter. If disabled, this is the same as specifying KMP_AFFINITY=none. Acceptable values: true, false, or a comma separated list, each element of which is one of the following values: master, close, spread, or primary. Default: false WARNING: master is deprecated. The semantics of
master are the same as primary.
If set to false, the execution environment may move OpenMP threads between OpenMP places, thread affinity is disabled, and proc_bind clauses on parallel constructs are ignored. Otherwise, the execution environment should not move OpenMP threads between OpenMP places, thread affinity is enabled, and the initial thread is bound to the first place in the OpenMP place list. If set to primary, all threads are bound to the same place as the primary thread. If set to close, threads are bound to successive places, near where the primary thread is bound. If set to spread, the primary thread's partition is subdivided and threads are bound to single place successive sub-partitions. Related environment variables: KMP_AFFINITY (overrides OMP_PROC_BIND). OMP_SCHEDULESets the run-time schedule type and an optional chunk size. Default: static, no chunk size specified Syntax: OMP_SCHEDULE="kind[,chunk_size]" OMP_STACKSIZESets the number of bytes to allocate for each OpenMP thread to use as the private stack for the thread. Recommended size is 16M. Use the optional suffixes to specify byte units: B (bytes), K (Kilobytes), M (Megabytes), G (Gigabytes), or T (Terabytes) to specify the units. If you specify a value without a suffix, the byte unit is assumed to be K (Kilobytes). This variable does not affect the native operating system threads created by the user program, or the thread executing the sequential part of an OpenMP program. The kmp_{set,get}_stacksize_s() routines set/retrieve the value. The kmp_set_stacksize_s() routine must be called from sequential part, before first parallel region is created. Otherwise, calling kmp_set_stacksize_s() has no effect. Default:
Related environment variables: KMP_STACKSIZE (overrides OMP_STACKSIZE). Example: OMP_STACKSIZE=8M OMP_THREAD_LIMITLimits the number of simultaneously-executing threads in an OpenMP program. If this limit is reached and another native operating system thread encounters OpenMP API calls or constructs, the program can abort with an error message. If this limit is reached when an OpenMP parallel region begins, a one-time warning message might be generated indicating that the number of threads in the team was reduced, but the program will continue. The omp_get_thread_limit() routine returns the value of the limit. Default: No enforced limit Related environment variable: KMP_ALL_THREADS (overrides OMP_THREAD_LIMIT). OMP_WAIT_POLICYDecides whether threads spin (active) or yield (passive) while they are waiting. OMP_WAIT_POLICY=active is an alias for KMP_LIBRARY=turnaround, and OMP_WAIT_POLICY=passive is an alias for KMP_LIBRARY=throughput. Default: passive NOTE: Although the default is passive, unless the user
has explicitly set OMP_WAIT_POLICY, there is a small period of active
spinning determined by KMP_BLOCKTIME.
KMP_AFFINITY (Windows, Linux)Enables run-time library to bind threads to physical processing units. You must set this environment variable before the first parallel region, or certain API calls including omp_get_max_threads(), omp_get_num_procs() and any affinity API calls. Syntax: KMP_AFFINITY=[<modifier>,...]<type>[,<permute>][,<offset>] modifiers are optional strings consisting of a keyword and possibly a specifier
Where each proc_id represents an operating system logical processor ID. For example, proclist=[3,0,{1,2},{0,3}] with OMP_NUM_THREADS=4 would place thread 0 on OS logical processor 3, thread 1 on OS logical processor 0, thread 2 on both OS logical processors 1 & 2, and thread 3 on OS logical processors 0 & 3. type is the thread affinity policy to choose. Valid choices are none, balanced, compact, scatter, explicit, disabled
For both compact and scatter, permute and offset are allowed; however, if you specify only one integer, the runtime interprets the value as a permute specifier. Both permute and offset default to 0. The permute specifier controls which levels are most significant when sorting the machine topology map. A value for permute forces the mappings to make the specified number of most significant levels of the sort the least significant, and it inverts the order of significance. The root node of the tree is not considered a separate level for the sort operations. The offset specifier indicates the starting position for thread assignment. Default: noverbose,warnings,respect,granularity=core,none Related environment variable: OMP_PROC_BIND (KMP_AFFINITY takes precedence) NOTE: On Windows with multiple processor groups, the norespect
affinity modifier is assumed when the process affinity mask equals a single
processor group (which is default on Windows). Otherwise, the respect affinity
modifier is used.
NOTE: On Windows with multiple processor groups, if the
granularity is too coarse, it will be set to granularity=group. For
example, if two processor groups exist across one socket, and
granularity=socket the runtime will shift the granularity down to group
since that is the largest granularity allowed by the OS.
KMP_HIDDEN_HELPER_AFFINITY (Windows, Linux)Enables run-time library to bind hidden helper threads to physical processing units. This environment variable has the same syntax and semantics as KMP_AFFINIY but only applies to the hidden helper team. You must set this environment variable before the first parallel region, or certain API calls including omp_get_max_threads(), omp_get_num_procs() and any affinity API calls. Syntax: Same as KMP_AFFINITY The following modifiers are ignored in KMP_HIDDEN_HELPER_AFFINITY and are only valid for KMP_AFFINITY: * respect and norespect * reset and noreset KMP_ALL_THREADSLimits the number of simultaneously-executing threads in an OpenMP program. If this limit is reached and another native operating system thread encounters OpenMP API calls or constructs, then the program may abort with an error message. If this limit is reached at the time an OpenMP parallel region begins, a one-time warning message may be generated indicating that the number of threads in the team was reduced, but the program will continue execution. Default: No enforced limit. Related environment variable: OMP_THREAD_LIMIT (KMP_ALL_THREADS takes precedence) KMP_BLOCKTIMESets the time that a thread should wait, after completing the execution of a parallel region, before sleeping. Use the optional suffixes: ms (milliseconds), or us (microseconds) to specify/change the units. Defaults units is milliseconds. Specify infinite for an unlimited wait time. Default: 200 milliseconds Related Environment Variable: KMP_LIBRARY Example: KMP_BLOCKTIME=1ms KMP_CPUINFO_FILESpecifies an alternate file name for a file containing the machine topology description. The file must be in the same format as /proc/cpuinfo. Default: None KMP_DETERMINISTIC_REDUCTIONEnables (true) or disables (false) the use of a specific ordering of the reduction operations for implementing the reduction clause for an OpenMP parallel region. This has the effect that, for a given number of threads, in a given parallel region, for a given data set and reduction operation, a floating point reduction done for an OpenMP reduction clause has a consistent floating point result from run to run, since round-off errors are identical. Default: false Example: KMP_DETERMINISTIC_REDUCTION=true KMP_DYNAMIC_MODESelects the method used to determine the number of threads to use for a parallel region when OMP_DYNAMIC=true. Possible values: (load_balance | thread_limit), where,
Default: load_balance (on all supported platforms) KMP_HOT_TEAMS_MAX_LEVELSets the maximum nested level to which teams of threads will be hot. NOTE: A hot team is a team of threads optimized for faster
reuse by subsequent parallel regions. In a hot team, threads are kept ready
for execution of the next parallel region, in contrast to the cold team, which
is freed after each parallel region, with its threads going into a common pool
of threads.
For values of 2 and above, nested parallelism should be enabled. Default: 1 KMP_HOT_TEAMS_MODESpecifies the run-time behavior when the number of threads in a hot team is reduced. Possible values:
Default: 0 KMP_HW_SUBSETSpecifies the subset of available hardware resources for the hardware topology hierarchy. The subset is specified in terms of number of units per upper layer unit starting from top layer downwards. E.g. the number of sockets (top layer units), cores per socket, and the threads per core, to use with an OpenMP application, as an alternative to writing complicated explicit affinity settings or a limiting process affinity mask. You can also specify an offset value to set which resources to use. When available, you can specify attributes to select different subsets of resources. An extended syntax is available when KMP_TOPOLOGY_METHOD=hwloc. Depending on what resources are detected, you may be able to specify additional resources, such as NUMA domains and groups of hardware resources that share certain cache levels. Basic syntax: [:][num_units|*]ID[@offset][:attribute] [,[num_units|*]ID[@offset][:attribute]...] An optional colon (:) can be specified at the beginning of the syntax to specify an explicit hardware subset. The default is an implicit hardware subset. Supported unit IDs are not case-insensitive. S - socket num_units specifies the requested number of sockets. D - die num_units specifies the requested number of dies per socket. C - core num_units specifies the requested number of cores per die - if any - otherwise, per socket. T - thread num_units specifies the requested number of HW threads per core. NOTE: num_units can be left out or explicitly specified
as * instead of a positive integer meaning use all specified resources
at that level. e.g., 1s,*c means use 1 socket and all the cores on that
socket
offset - (Optional) The number of units to skip. attribute - (Optional) An attribute differentiating resources at a particular level. The attributes available to users are:
NOTE: The hardware cache can be specified as a unit, e.g. L2
for L2 cache, or LL for last level cache.
Extended syntax when KMP_TOPOLOGY_METHOD=hwloc: Additional IDs can be specified if detected. For example: N - numa num_units specifies the requested number of NUMA nodes per upper layer unit, e.g. per socket. TI - tile num_units specifies the requested number of tiles to use per upper layer unit, e.g. per NUMA node. When any numa or tile units are specified in KMP_HW_SUBSET and the hwloc topology method is available, the KMP_TOPOLOGY_METHOD will be automatically set to hwloc, so there is no need to set it explicitly. For an explicit hardware subset, if one or more topology layers detected by the runtime are omitted from the subset, then those topology layers are ignored. Only explicitly specified topology layers are used in the subset. For an implicit hardware subset, it is implied that the socket, core, and thread topology types should be included in the subset. Other topology layers are not implicitly included and are ignored if they are not specified in the subset. Because the socket, core and thread topology types are always included in implicit hardware subsets, when they are omitted, it is assumed that all available resources of that type should be used. Implicit hardware subsets are the default. If you don't specify one or more types of resource, such as socket or thread, all available resources of that type are used. The run-time library prints a warning, and the setting of KMP_HW_SUBSET is ignored if:
This variable does not work if KMP_AFFINITY=disabled. Default: If omitted, the default value is to use all the available hardware resources. Implicit Hardware Subset Examples:
Explicit Hardware Subset Examples:
To see the result of the setting, you can specify verbose modifier in KMP_AFFINITY environment variable. The OpenMP run-time library will output to stderr the information about the discovered hardware topology before and after the KMP_HW_SUBSET setting was applied. KMP_INHERIT_FP_CONTROLEnables (true) or disables (false) the copying of the floating-point control settings of the primary thread to the floating-point control settings of the OpenMP worker threads at the start of each parallel region. Default: true KMP_LIBRARYSelects the OpenMP run-time library execution mode. The values for this variable are serial, turnaround, or throughput. Default: throughput Related environment variable: KMP_BLOCKTIME and OMP_WAIT_POLICY KMP_SETTINGSEnables (true) or disables (false) the printing of OpenMP run-time library environment variables during program execution. Two lists of variables are printed: user-defined environment variables settings and effective values of variables used by OpenMP run-time library. Default: false KMP_STACKSIZESets the number of bytes to allocate for each OpenMP thread to use as its private stack. Recommended size is 16M. Use the optional suffixes to specify byte units: B (bytes), K (Kilobytes), M (Megabytes), G (Gigabytes), or T (Terabytes) to specify the units. If you specify a value without a suffix, the byte unit is assumed to be K (Kilobytes). Related environment variable: KMP_STACKSIZE overrides GOMP_STACKSIZE, which overrides OMP_STACKSIZE. Default:
KMP_TOPOLOGY_METHODForces OpenMP to use a particular machine topology modeling method. Possible values are:
NOTE: Support for group is now deprecated and will be removed
in a future release. Use all instead.
Default: all KMP_VERSIONEnables (true) or disables (false) the printing of OpenMP run-time library version information during program execution. Default: false KMP_WARNINGSEnables (true) or disables (false) displaying warnings from the OpenMP run-time library during program execution. Default: true Environment Variableslibomptarget uses environment variables to control different features of the library at runtime. This allows the user to obtain useful runtime information as well as enable or disable certain features. A full list of supported environment variables is defined below.
LIBOMPTARGET_DEBUGLIBOMPTARGET_DEBUG controls whether or not debugging information will be displayed. This feature is only available if libomptarget was built with -DOMPTARGET_DEBUG. The debugging output provided is intended for use by libomptarget developers. More user-friendly output is presented when using LIBOMPTARGET_INFO. LIBOMPTARGET_PROFILELIBOMPTARGET_PROFILE allows libomptarget to generate time profile output similar to Clang's -ftime-trace option. This generates a JSON file based on Chrome Tracing that can be viewed with chrome://tracing or the Speedscope App. The output will be saved to the filename specified by the environment variable. For multi-threaded applications, profiling in libomp is also needed. Setting the CMake option OPENMP_ENABLE_LIBOMP_PROFILING=ON to enable the feature. This feature depends on the LLVM Support Library for time trace output. Note that this will turn libomp into a C++ library. LIBOMPTARGET_PROFILE_GRANULARITYLIBOMPTARGET_PROFILE_GRANULARITY allows to change the time profile granularity measured in us. Default is 500 (us). LIBOMPTARGET_MEMORY_MANAGER_THRESHOLDLIBOMPTARGET_MEMORY_MANAGER_THRESHOLD sets the threshold size for which the libomptarget memory manager will handle the allocation. Any allocations larger than this threshold will not use the memory manager and be freed after the device kernel exits. The default threshold value is 8KB. If LIBOMPTARGET_MEMORY_MANAGER_THRESHOLD is set to 0 the memory manager will be completely disabled. LIBOMPTARGET_INFOLIBOMPTARGET_INFO allows the user to request different types of runtime information from libomptarget. LIBOMPTARGET_INFO uses a 32-bit field to enable or disable different types of information. This includes information about data-mappings and kernel execution. It is recommended to build your application with debugging information enabled, this will enable filenames and variable declarations in the information messages. OpenMP Debugging information is enabled at any level of debugging so a full debug runtime is not required. For minimal debugging information compile with -gline-tables-only, or compile with -g for full debug information. A full list of flags supported by LIBOMPTARGET_INFO is given below.
Any combination of these flags can be used by setting the appropriate bits. For example, to enable printing all data active in an OpenMP target region along with CUDA information, run the following bash command. $ env LIBOMPTARGET_INFO=$((0x1 | 0x10)) ./your-application Or, to enable every flag run with every bit set. $ env LIBOMPTARGET_INFO=-1 ./your-application For example, given a small application implementing the ZAXPY BLAS routine, Libomptarget can provide useful information about data mappings and thread usages. #include <complex>
using complex = std::complex<double>;
void zaxpy(complex *X, complex *Y, complex D, std::size_t N) {
#pragma omp target teams distribute parallel for
Compiling this code targeting nvptx64 with all information enabled will provide the following output from the runtime library. $ clang++ -fopenmp -fopenmp-targets=nvptx64 -O3 -gline-tables-only zaxpy.cpp -o zaxpy $ env LIBOMPTARGET_INFO=-1 ./zaxpy Info: Entering OpenMP data region at zaxpy.cpp:14:1 with 2 arguments: Info: to(X[0:N])[16384] Info: tofrom(Y[0:N])[16384] Info: Creating new map entry with HstPtrBegin=0x00007fff0d259a40, From this information, we can see the OpenMP kernel being launched on the CUDA device with enough threads and blocks for all 1024 iterations of the loop in simplified SPMD Mode. The information from the OpenMP data region shows the two arrays X and Y being copied from the host to the device. This creates an entry in the host-device mapping table associating the host pointers to the newly created device data. The data mappings in the OpenMP device kernel show the default mappings being used for all the variables used implicitly on the device. Because X and Y are already mapped in the device's table, no new entries are created. Additionally, the default mapping shows that D will be copied back from the device once the OpenMP device kernel region ends even though it isn't written to. Finally, at the end of the OpenMP data region the entries for X and Y are removed from the table. The information level can be controlled at runtime using an internal libomptarget library call __tgt_set_info_flag. This allows for different levels of information to be enabled or disabled for certain regions of code. Using this requires declaring the function signature as an external function so it can be linked with the runtime library. extern "C" void __tgt_set_info_flag(uint32_t);
extern foo();
int main() {
Errors:libomptarget provides error messages when the program fails inside the OpenMP target region. Common causes of failure could be an invalid pointer access, running out of device memory, or trying to offload when the device is busy. If the application was built with debugging symbols the error messages will additionally provide the source location of the OpenMP target region. For example, consider the following code that implements a simple parallel reduction on the GPU. This code has a bug that causes it to fail in the offloading region. #include <cstdio>
double sum(double *A, std::size_t N) {
If this code is compiled and run, there will be an error message indicating what is going wrong. $ clang++ -fopenmp -fopenmp-targets=nvptx64 -O3 -gline-tables-only sum.cpp -o sum $ ./sum CUDA error: an illegal memory access was encountered Libomptarget error: Copying data from device failed. Libomptarget error: Call to targetDataEnd failed, abort target. Libomptarget error: Failed to process data after launching the kernel. Libomptarget error: Consult https://openmp.llvm.org/design/Runtimes.html for debugging options. sum.cpp:5:1: Libomptarget error 1: failure of target construct while offloading is mandatory This shows that there is an illegal memory access occurring inside the OpenMP target region once execution has moved to the CUDA device, suggesting a segmentation fault. This then causes a chain reaction of failures in libomptarget. Another message suggests using the LIBOMPTARGET_INFO environment variable as described in Environment Variables. If we do this it will print the sate of the host-target pointer mappings at the time of failure. $ clang++ -fopenmp -fopenmp-targets=nvptx64 -O3 -gline-tables-only sum.cpp -o sum $ env LIBOMPTARGET_INFO=4 ./sum info: OpenMP Host-Device pointer mappings after block at sum.cpp:5:1: info: Host Ptr Target Ptr Size (B) RefCount Declaration info: 0x00007ffc058280f8 0x00007f4186600000 8 1 sum at sum.cpp:4:10 This tells us that the only data mapped between the host and the device is the sum variable that will be copied back from the device once the reduction has ended. There is no entry mapping the host array A to the device. In this situation, the compiler cannot determine the size of the array at compile time so it will simply assume that the pointer is mapped on the device already by default. The solution is to add an explicit map clause in the target region. double sum(double *A, std::size_t N) {
LIBOMPTARGET_STACK_SIZEThis environment variable sets the stack size in bytes for the AMDGPU and CUDA plugins. This can be used to increase or decrease the standard amount of memory reserved for each thread's stack. LIBOMPTARGET_HEAP_SIZEThis environment variable sets the amount of memory in bytes that can be allocated using malloc and free for the CUDA plugin. This is necessary for some applications that allocate too much memory either through the user or globalization. LIBOMPTARGET_SHARED_MEMORY_SIZEThis environment variable sets the amount of dynamic shared memory in bytes used by the kernel once it is launched. A pointer to the dynamic memory buffer can be accessed using the llvm_omp_target_dynamic_shared_alloc function. An example is shown in Dynamic Shared Memory. LIBOMPTARGET_MAP_FORCE_ATOMICThe OpenMP standard guarantees that map clauses are atomic. However, the this can have a drastic performance impact. Users that do not require atomic map clauses can disable them to potentially recover lost performance. As a consequence, users have to guarantee themselves that no two map clauses will concurrently map the same memory. If the memory is already mapped and the map clauses will only modify the reference counter from a non-zero count to another non-zero count, concurrent map clauses are supported regardless of this option. To disable forced atomic map clauses use "false"/"FALSE" as the value of the LIBOMPTARGET_MAP_FORCE_ATOMIC environment variable. The default behavior of LLVM 14 is to force atomic maps clauses, prior versions of LLVM did not. LIBOMPTARGET_JIT_OPT_LEVELThis environment variable can be used to change the optimization pipeline used to optimize the embedded device code as part of the device JIT. The value is corresponds to the -O{0,1,2,3} command line argument passed to clang. LIBOMPTARGET_JIT_SKIP_OPTThis environment variable can be used to skip the optimization pipeline during JIT compilation. If set, the image will only be passed through the backend. The backend is invoked with the LIBOMPTARGET_JIT_OPT_LEVEL flag. LIBOMPTARGET_JIT_REPLACEMENT_OBJECTThis environment variable can be used to replace the embedded device code before the device JIT finishes compilation for the target. The value is expected to be a filename to an object file, thus containing the output of the assembler in object format for the respective target. The JIT optimization pipeline and backend are skipped and only target specific post-processing is performed on the object file before it is loaded onto the device. LIBOMPTARGET_JIT_REPLACEMENT_MODULEThis environment variable can be used to replace the embedded device code before the device JIT finishes compilation for the target. The value is expected to be a filename to an LLVM-IR file, thus containing an LLVM-IR module for the respective target. To obtain a device code image compatible with the embedded one it is recommended to extract the embedded one either before or after IR optimization. This can be done at compile time, after compile time via llvm tools (llvm-objdump), or, simply, by setting the LIBOMPTARGET_JIT_PRE_OPT_IR_MODULE or LIBOMPTARGET_JIT_POST_OPT_IR_MODULE environment variables. LIBOMPTARGET_JIT_PRE_OPT_IR_MODULEThis environment variable can be used to extract the embedded device code before the device JIT runs additional IR optimizations on it (see LIBOMPTARGET_JIT_OPT_LEVEL). The value is expected to be a filename into which the LLVM-IR module is written. The module can be the analyzed, and transformed and loaded back into the JIT pipeline via LIBOMPTARGET_JIT_REPLACEMENT_MODULE. LIBOMPTARGET_JIT_POST_OPT_IR_MODULEThis environment variable can be used to extract the embedded device code after the device JIT runs additional IR optimizations on it (see LIBOMPTARGET_JIT_OPT_LEVEL). The value is expected to be a filename into which the LLVM-IR module is written. The module can be the analyzed, and transformed and loaded back into the JIT pipeline via LIBOMPTARGET_JIT_REPLACEMENT_MODULE. LIBOMPTARGET_MIN_THREADS_FOR_LOW_TRIP_COUNTThis environment variable defines a lower bound for the number of threads if a combined kernel, e.g., target teams distribute parallel for, has insufficient parallelism. Especially if the trip count of the loops is lower than the number of threads possible times the number of teams (aka. blocks) the device prefers (see also LIBOMPTARGET_AMDGPU_TEAMS_PER_CU), we will reduce the thread count to increase outer (team/block) parallelism. The thread count will never be reduced below the value passed for this environment variable though. LIBOMPTARGET_REUSE_BLOCKS_FOR_HIGH_TRIP_COUNTThis environment variable can be used to control how the OpenMP runtime assigns blocks to loops with high trip counts. By default we reuse existing blocks rather than spawning new blocks. LLVM/OpenMP Target Host Runtime Plugins (libomptarget.rtl.XXXX)The LLVM/OpenMP target host runtime plugins were recently re-implemented, temporarily renamed as the NextGen plugins, and set as the default and only plugins' implementation. Currently, these plugins have support for the NVIDIA and AMDGPU devices as well as the GenericELF64bit host-simulated device. The source code of the common infrastructure and the vendor-specific plugins is in the openmp/libomptarget/nextgen-plugins directory in the LLVM project repository. The plugin infrastructure aims at unifying the plugin code and logic into a generic interface using object-oriented C++. There is a plugin interface composed by multiple generic C++ classes which implement the common logic that every vendor-specific plugin should provide. In turn, the specific plugins inherit from those generic classes and implement the required functions that depend on the specific vendor API. As an example, some generic classes that the plugin interface define are for representing a device, a device image, an efficient resource manager, etc. With this common plugin infrastructure, several tasks have been simplified: adding a new vendor-specific plugin, adding generic features or optimizations to all plugins, debugging plugins, etc. Environment VariablesThere are several environment variables to change the behavior of the plugins:
The environment variables LIBOMPTARGET_SHARED_MEMORY_SIZE, LIBOMPTARGET_STACK_SIZE and LIBOMPTARGET_HEAP_SIZE are described in Environment Variables. LIBOMPTARGET_NUM_INITIAL_STREAMSThis environment variable sets the number of pre-created streams in the plugin (if supported) at initialization. More streams will be created dynamically throughout the execution if needed. A stream is a queue of asynchronous operations (e.g., kernel launches and memory copies) that are executed sequentially. Parallelism is achieved by featuring multiple streams. The libomptarget leverages streams to exploit parallelism between plugin operations. The default value is 1, more streams are created as needed. LIBOMPTARGET_NUM_INITIAL_EVENTSThis environment variable sets the number of pre-created events in the plugin (if supported) at initialization. More events will be created dynamically throughout the execution if needed. An event is used to synchronize a stream with another efficiently. The default value is 1, more events are created as needed. LIBOMPTARGET_LOCK_MAPPED_HOST_BUFFERSThis environment variable indicates whether the host buffers mapped by the user should be automatically locked/pinned by the plugin. Pinned host buffers allow true asynchronous copies between the host and devices. Enabling this feature can increase the performance of applications that are intensive in host-device memory transfers. The default value is false. LIBOMPTARGET_AMDGPU_NUM_HSA_QUEUESThis environment variable controls the number of HSA queues per device in the AMDGPU plugin. An HSA queue is a runtime-allocated resource that contains an AQL (Architected Queuing Language) packet buffer and is associated with an AQL packet processor. HSA queues are used for inserting kernel packets to launching kernel executions. A high number of HSA queues may degrade the performance. The default value is 4. LIBOMPTARGET_AMDGPU_HSA_QUEUE_SIZEThis environment variable controls the size of each HSA queue in the AMDGPU plugin. The size is the number of AQL packets an HSA queue is expected to hold. It is also the number of AQL packets that can be pushed into each queue without waiting the driver to process them. The default value is 512. LIBOMPTARGET_AMDGPU_HSA_QUEUE_BUSY_TRACKINGThis environment variable controls if idle HSA queues will be preferentially assigned to streams, for example when they are requested for a kernel launch. Should all queues be considered busy, a new queue is initialized and returned, until we reach the set maximum. Otherwise, we will select the least utilized queue. If this is disabled, each time a stream is requested a new HSA queue will be initialized, regardless of their utilization. Additionally, queues will be selected using round robin selection. The default value is true. LIBOMPTARGET_AMDGPU_TEAMS_PER_CUThis environment variable controls the default number of teams relative to the number of compute units (CUs) of the AMDGPU device. The default number of teams is #default_teams = #teams_per_CU * #CUs. The default value of teams per CU is 4. LIBOMPTARGET_AMDGPU_MAX_ASYNC_COPY_BYTESThis environment variable specifies the maximum size in bytes where the memory copies are asynchronous operations in the AMDGPU plugin. Up to this transfer size, the memory copies are asynchronous operations pushed to the corresponding stream. For larger transfers, they are synchronous transfers. Memory copies involving already locked/pinned host buffers are always asynchronous. The default value is 1*1024*1024 bytes (1 MB). LIBOMPTARGET_AMDGPU_NUM_INITIAL_HSA_SIGNALSThis environment variable controls the initial number of HSA signals per device in the AMDGPU plugin. There is one resource manager of signals per device managing several pre-created signals. These signals are mainly used by AMDGPU streams. More HSA signals will be created dynamically throughout the execution if needed. The default value is 64. LIBOMPTARGET_AMDGPU_STREAM_BUSYWAITThis environment variable controls the timeout hint in microseconds for the HSA wait state within the AMDGPU plugin. For the duration of this value the HSA runtime may busy wait. This can reduce overall latency. The default value is 2000000. Remote Offloading Plugin:The remote offloading plugin permits the execution of OpenMP target regions on devices in remote hosts in addition to the devices connected to the local host. All target devices on the remote host will be exposed to the application as if they were local devices, that is, the remote host CPU or its GPUs can be offloaded to with the appropriate device number. If the server is running on the same host, each device may be identified twice: once through the device plugins and once through the device plugins that the server application has access to. This plugin consists of libomptarget.rtl.rpc.so and openmp-offloading-server which should be running on the (remote) host. The server application does not have to be running on a remote host, and can instead be used on the same host in order to debug memory mapping during offloading. These are implemented via gRPC/protobuf so these libraries are required to build and use this plugin. The server must also have access to the necessary target-specific plugins in order to perform the offloading. Due to the experimental nature of this plugin, the CMake variable LIBOMPTARGET_ENABLE_EXPERIMENTAL_REMOTE_PLUGIN must be set in order to build this plugin. For example, the rpc plugin is not designed to be thread-safe, the server cannot concurrently handle offloading from multiple applications at once (it is synchronous) and will terminate after a single execution. Note that openmp-offloading-server is unable to remote offload onto a remote host itself and will error out if this is attempted.
LIBOMPTARGET_RPC_ADDRESSThe address and port at which the server is running. This needs to be set for the server and the application, the default is 0.0.0.0:50051. A single OpenMP executable can offload onto multiple remote hosts by setting this to comma-separated values of the addresses. LIBOMPTARGET_RPC_ALLOCATOR_MAXAfter allocating this size, the protobuf allocator will clear. This can be set for both endpoints. LIBOMPTARGET_BLOCK_SIZEThis is the maximum size of a single message while streaming data transfers between the two endpoints and can be set for both endpoints. LIBOMPTARGET_RPC_LATENCYThis is the maximum amount of time the client will wait for a response from the server. LLVM/OpenMP support for C library routinesSupport for calling standard C library routines on GPU targets is provided by the LLVM C Library. This project provides two static libraries, libcgpu.a and libllvmlibc_rpc_server.a, which are used by the OpenMP runtime to provide libc support. The libcgpu.a library contains the GPU device code, while libllvmlibc_rpc_server.a provides the interface to the RPC interface. More information on the RPC construction can be found in the associated documentation. To provide host services, we run an RPC server inside of the runtime. This allows the host to respond to requests made from the GPU asynchronously. For libc calls that require an RPC server, such as printing, an external handle to the RPC client running on the GPU will be present in the GPU executable. If we find this symbol, we will initialize a client and server and run it in the background while the kernel is executing. For example, consider the following simple OpenMP offloading code. Here we will simply print a string to the user from the GPU. #include <stdio.h>
int main() {
We can compile this using the libcgpu.a library to resolve the symbols. Because this function requires RPC support, this will also pull in an externally visible symbol called __llvm_libc_rpc_client into the device image. When loading the device image, the runtime will check for this symbol and initialize an RPC interface if it is found. The following example shows the RPC server being used. $ clang++ hello.c -fopenmp --offload-arch=gfx90a -lcgpu $ env LIBOMPTARGET_DEBUG=1 ./a.out PluginInterface --> Running an RPC server on device 0 ... Hello World! LLVM/OpenMP Target Device Runtime (libomptarget-ARCH-SUBARCH.bc)The target device runtime is an LLVM bitcode library that implements OpenMP runtime functions on the target device. It is linked with the device code's LLVM IR during compilation. Dynamic Shared MemoryThe target device runtime contains a pointer to the dynamic shared memory buffer. This pointer can be obtained using the llvm_omp_target_dynamic_shared_alloc extension. If this function is called from the host it will simply return a null pointer. In order to use this buffer the kernel must be launched with an adequate amount of dynamic shared memory allocated. This can be done using the LIBOMPTARGET_SHARED_MEMORY_SIZE environment variable or the ompx_dyn_cgroup_mem(<N>) target directive clause. Examples for both are given below. void foo() {
$ clang++ -fopenmp --offload-arch=sm_80 -O3 shared.c $ env LIBOMPTARGET_SHARED_MEMORY_SIZE=256 ./shared void foo(int N) {
$ clang++ -fopenmp --offload-arch=gfx90a -O3 shared.c $ env ./shared DebuggingThe device runtime supports debugging in the runtime itself. This is configured at compile-time using the flag -fopenmp-target-debug=<N> rather than using a separate debugging build. If debugging is not enabled, the debugging paths will be considered trivially dead and removed by the compiler with zero overhead. Debugging is enabled at runtime by running with the environment variable LIBOMPTARGET_DEVICE_RTL_DEBUG=<N> set. The number set is a 32-bit field used to selectively enable and disable different features. Currently, the following debugging features are supported.
OpenACC support is under development for both Flang and Clang. For this purpose, LLVM's OpenMP runtimes are being extended to serve as OpenACC runtimes. In some cases, Clang supports OpenMP extensions to make the additional functionality also available in OpenMP applications. OPENACC SUPPORTOpenACC support is under development for both Flang and Clang. For this purpose, LLVM's OpenMP runtimes are being extended to serve as OpenACC runtimes. OpenMP Extensions for OpenACCOpenACC provides some functionality that OpenMP does not. In some cases, Clang supports OpenMP extensions to provide similar functionality, taking advantage of the runtime implementation already required for OpenACC. This section documents those extensions. By default, Clang recognizes these extensions. The command-line option -fno-openmp-extensions can be specified to disable all OpenMP extensions, including those described in this section. MotivationThere are multiple benefits to exposing OpenACC functionality as LLVM OpenMP extensions:
ompx_hold Map Type ModifierExample#pragma omp target data map(ompx_hold, tofrom: x) // holds onto mapping of x throughout region
{
The ompx_hold map type modifier above specifies that the target data directive holds onto the mapping for x throughout the associated region regardless of any target exit data directives executed during the call to foo. Thus, the presence assertion for x at the enclosed target construct cannot fail. Behavior
Implementation
Relationship with OpenACCOpenACC specifies two reference counts for tracking host/device data mappings. Which reference count is used to implement an OpenACC directive is determined by the nature of that directive, either dynamic or structured:
Contrast with OpenMP, where the dynamic reference count is always used unless the application developer specifies an alternate behavior via our map type modifier extension. We chose the name hold for that map type modifier because, as demonstrated in the above example, hold concisely identifies the desired behavior from the application developer's perspective without referencing the implementation of that behavior. The hold reference count is otherwise modeled after OpenACC's structured reference count. For example, calling acc_unmap_data, which is similar to omp_target_disassociate_ptr, is an error when the structured reference count is not zero. While Flang and Clang obviously must implement the syntax and semantics for selecting OpenACC reference counts differently than for selecting OpenMP reference counts, the implementation is the same at the runtime level. That is, OpenACC's dynamic reference count is OpenMP's dynamic reference count, and OpenACC's structured reference count is our OpenMP hold reference count extension. atomic Strictly Nested Within teamsExampleOpenMP 5.2, sec. 10.2 "teams Construct", p. 232, L9-12 restricts what regions can be strictly nested within a teams region. As an extension, Clang relaxes that restriction in the case of the atomic construct so that, for example, the following case is permitted: #pragma omp target teams map(tofrom:x) #pragma omp atomic update x++; Relationship with OpenACCThis extension is important when translating OpenACC to OpenMP because OpenACC does not have the same restriction for its corresponding constructs. For example, the following is conforming OpenACC: #pragma acc parallel copy(x) #pragma acc atomic update x++; LLVM, since version 11 (12 Oct 2020), has an OpenMP-Aware optimization pass as well as the ability to perform "scalar optimizations" across OpenMP region boundaries. In-depth discussion of the topic can be found here. OPENMP OPTIMIZATIONS IN LLVMLLVM, since version 11 (12 Oct 2020), has an OpenMP-Aware optimization pass as well as the ability to perform "scalar optimizations" across OpenMP region boundaries. OpenMP-Aware OptimizationsLLVM, since version 11 (12 Oct 2020), supports an OpenMP-Aware optimization pass. This optimization pass will attempt to optimize the module with OpenMP-specific domain-knowledge. This pass is enabled by default at high optimization levels (O2 / O3) if compiling with OpenMP support enabled. OpenMPOpt
OpenMPOpt contains several OpenMP-Aware optimizations. This pass is run early on the entire Module, and later on the entire call graph. Most optimizations done by OpenMPOpt support remarks. Optimization remarks can be enabled by compiling with the following flags. $ clang -Rpass=openmp-opt -Rpass-missed=openmp-opt -Rpass-analysis=openmp-opt OpenMP Runtime Call DeduplicationThe OpenMP runtime library contains several functions used to implement features of the OpenMP standard. Several of the runtime calls are constant within a parallel region. A common optimization is to replace invariant code with a single reference, but in this case the compiler will only see an opaque call into the runtime library. To get around this, OpenMPOpt maintains a list of OpenMP runtime functions that are constant and will manually deduplicate them. GlobalizationThe OpenMP standard requires that data can be shared between different threads. This requirement poses a unique challenge when offloading to GPU accelerators. Data cannot be shared between the threads in a GPU by default, in order to do this it must either be placed in global or shared memory. This needs to be done every time a variable may potentially be shared in order to create correct OpenMP programs. Unfortunately, this has significant performance implications and is not needed in the majority of cases. For example, when Clang is generating code for this offloading region, it will see that the variable x escapes and is potentially shared. This will require globalizing the variable, which means it cannot reside in the registers on the device. void use(void *) { }
void foo() {
In many cases, this transformation is not actually necessary but still carries a significant performance penalty. Because of this, OpenMPOpt can perform and inter-procedural optimization and scan each known usage of the globalized variable and determine if it is potentially captured and shared by another thread. If it is not actually captured, it can safely be moved back to fast register memory. Another case is memory that is intentionally shared between the threads, but is shared from one thread to all the others. Such variables can be moved to shared memory when compiled without needing to go through the runtime library. This allows for users to confidently declare shared memory on the device without needing to use custom OpenMP allocators or rely on the runtime. static void share(void *);
static void foo() {
These optimizations can have very large performance implications. Both of these optimizations rely heavily on inter-procedural analysis. Because of this, offloading applications should ideally be contained in a single translation unit and functions should not be externally visible unless needed. OpenMPOpt will inform the user if any globalization calls remain if remarks are enabled. This should be treated as a defect in the program. Resources
Resources
LLVM has an elaborate ecosystem around analysis and optimization remarks issues during compilation. The remarks can be enabled from the clang frontend [1] [2] in various formats [3] [4] to be used by tools, i.a., opt-viewer or llvm-opt-report (dated). The OpenMP optimizations in LLVM have been developed with remark support as a priority. For a list of OpenMP specific remarks and more information on them, please refer to OpenMP Optimization Remarks.
OPENMP OPTIMIZATION REMARKSThe OpenMP-Aware optimization pass is able to generate compiler remarks for performed and missed optimisations. To emit them, pass these options to the Clang invocation: -Rpass=openmp-opt -Rpass-analysis=openmp-opt -Rpass-missed=openmp-opt. For more information and features of the remark system, consult the clang documentation:
Potentially unknown OpenMP target region caller [OMP100]A function remark that indicates the function, when compiled for a GPU, is potentially called from outside the translation unit. Note that a remark is only issued if we tried to perform an optimization which would require us to know all callers on the GPU. To facilitate OpenMP semantics on GPUs we provide a runtime mechanism through which the code that makes up the body of a parallel region is shared with the threads in the team. Generally we use the address of the outlined parallel region to identify the code that needs to be executed. If we know all target regions that reach the parallel region we can avoid this function pointer passing scheme and often improve the register usage on the GPU. However, If a parallel region on the GPU is in a function with external linkage we may not know all callers statically. If there are outside callers within target regions, this remark is to be ignored. If there are no such callers, users can modify the linkage and thereby help optimization with a static or __attribute__((internal)) function annotation. If changing the linkage is impossible, e.g., because there are outside callers on the host, one can split the function into an external visible interface which is not compiled for the target and an internal implementation which is compiled for the target and should be called from within the target region. Parallel region is used in unknown / unexpected ways. Will not attempt to rewrite the state machine. [OMP101]An analysis remark that indicates that a parallel region has unknown calls. Parallel region is not called from a unique kernel. Will not attempt to rewrite the state machine. [OMP102]This analysis remark indicates that a given parallel region is called by multiple kernels. This prevents the compiler from optimizing it to a single kernel and rewrite the state machine. Moving globalized variable to the stack. [OMP110]This optimization remark indicates that a globalized variable was moved back to thread-local stack memory on the device. This occurs when the optimization pass can determine that a globalized variable cannot possibly be shared between threads and globalization was ultimately unnecessary. Using stack memory is the best-case scenario for data globalization as the variable can now be stored in fast register files on the device. This optimization requires full visibility of each variable. Globalization typically occurs when a pointer to a thread-local variable escapes the current scope. The compiler needs to be pessimistic and assume that the pointer could be shared between multiple threads according to the OpenMP standard. This is expensive on target offloading devices that do not allow threads to share data by default. Instead, this data must be moved to memory that can be shared, such as shared or global memory. This optimization moves the data back from shared or global memory to thread-local stack memory if the data is not actually shared between the threads. ExamplesA trivial example of globalization occurring can be seen with this example. The compiler sees that a pointer to the thread-local variable x escapes the current scope and must globalize it even though it is not actually necessary. Fortunately, this optimization can undo this by looking at its usage. void use(int *x) { }
void foo() {
$ clang++ -fopenmp -fopenmp-targets=nvptx64 omp110.cpp -O1 -Rpass=openmp-opt omp110.cpp:6:7: remark: Moving globalized variable to the stack. [OMP110] A less trivial example can be seen using C++'s complex numbers. In this case the overloaded arithmetic operators cause pointers to the complex numbers to escape the current scope, but they can again be removed once the usage is visible. #include <complex>
using complex = std::complex<double>;
void zaxpy(complex *X, complex *Y, const complex D, int N) {
#pragma omp target teams distribute parallel for firstprivate(D)
$ clang++ -fopenmp -fopenmp-targets=nvptx64 omp110.cpp -O1 -Rpass=openmp-opt In file included from omp110.cpp:1: In file included from /usr/bin/clang/lib/clang/13.0.0/include/openmp_wrappers/complex:27: /usr/include/c++/8/complex:328:20: remark: Moving globalized variable to the stack. [OMP110] Diagnostic ScopeOpenMP target offloading optimization remark. Replaced globalized variable with X bytes of shared memory. [OMP111]This optimization occurs when a globalized variable's data is shared between multiple threads, but requires a constant amount of memory that can be determined at compile time. This is the case when only a single thread creates the memory and is then shared between every thread. The memory can then be pushed to a static buffer of shared memory on the device. This optimization allows users to declare shared memory on the device without using OpenMP's custom allocators. Globalization occurs when a pointer to a thread-local variable escapes the current scope. If a single thread is known to be responsible for creating and sharing the data it can instead be mapped directly to the device's shared memory. Checking if only a single thread can execute an instruction requires that the parent functions have internal linkage. Otherwise, an external caller could invalidate this analysis but having multiple threads call that function. The optimization pass will make internal copies of each function to use for this reason, but it is still recommended to mark them as internal using keywords like static whenever possible. ExampleThis optimization should apply to any variable declared in an OpenMP target region that is then shared with every thread in a parallel region. This allows the user to declare shared memory without using custom allocators. A simple stencil calculation shows how this can be used. void stencil(int M, int N, double *X, double *Y) {
#pragma omp target teams distribute collapse(2) \
$ clang++ -fopenmp -fopenmp-targets=nvptx64 -O1 -Rpass=openmp-opt -fopenmp-version=51 omp111.cpp omp111.cpp:10:14: remark: Replaced globalized variable with 8192 bytes of shared memory. [OMP111] The default mapping for variables captured in an OpenMP parallel region is shared. This means taking a pointer to the object which will ultimately result in globalization that will be mapped to shared memory when it could have been placed in registers. To avoid this, make sure each variable that can be copied into the region is marked firstprivate either explicitly or using the OpenMP 5.1 feature default(firstprivate). Diagnostic ScopeOpenMP target offloading optimization remark. Found thread data sharing on the GPU. Expect degraded performance due to data globalization. [OMP112]This missed remark indicates that a globalized value was found on the target device that was not either replaced with stack memory by OMP110 or shared memory by OMP111. Globalization that has not been removed will need to be handled by the runtime and will significantly impact performance. The OpenMP standard requires that threads are able to share their data between each-other. However, this is not true by default when offloading to a target device such as a GPU. Threads on a GPU cannot shared their data unless it is first placed in global or shared memory. In order to create standards complaint code, the Clang compiler will globalize any variables that could potentially be shared between the threads. In the majority of cases, globalized variables can either be returns to a thread-local stack, or pushed to shared memory. However, in a few cases it is necessary and will cause a performance penalty. ExamplesThis example shows legitimate data sharing on the device. It is a convoluted example, but is completely complaint with the OpenMP standard. If globalization was not added this would result in different results on different target devices. #include <omp.h>
#include <cstdio>
#pragma omp declare target
static int *p;
#pragma omp end declare target
void foo() {
$ clang++ -fopenmp -fopenmp-targets=nvptx64 -O1 -Rpass-missed=openmp-opt omp112.cpp omp112.cpp:9:7: remark: Found thread data sharing on the GPU. Expect degraded performance due to data globalization. [OMP112] [-Rpass-missed=openmp-opt] int x = omp_get_thread_num(); A less convoluted example globalization that cannot be removed occurs when calling functions that aren't visible from the current translation unit. extern void use(int *x);
void foo() {
$ clang++ -fopenmp -fopenmp-targets=nvptx64 -O1 -Rpass-missed=openmp-opt omp112.cpp omp112.cpp:4:7: remark: Found thread data sharing on the GPU. Expect degraded performance due to data globalization. [OMP112] [-Rpass-missed=openmp-opt] int x; Diagnostic ScopeOpenMP target offloading missed remark. Could not move globalized variable to the stack. Variable is potentially captured in call. Mark parameter as __attribute__((noescape)) to override. [OMP113]This missed remark indicates that a globalized value could not be moved to the stack because it is potentially captured by a call to a function we cannot analyze. In order for a globalized variable to be moved to the stack, copies to its pointer cannot be stored. Otherwise it is considered captured and could potentially be shared between the threads. This can be overridden using a parameter level attribute as suggested in the remark text. Globalization will occur when a pointer to a thread-local variable escapes the current scope. In most cases it can be determined that the variable cannot be shared if a copy of its pointer is never made. However, this remark indicates a copy of the pointer is present or that sharing is possible because it is used outside the current translation unit. ExamplesIf a pointer to a thread-local variable is passed to a function not visible in the current translation unit we need to assume a copy is made of it that can be shared between the threads. This prevents OMP110 from triggering, which will result in a performance penalty when executing on the target device. extern void use(int *x);
void foo() {
$ clang++ -fopenmp -fopenmp-targets=nvptx64 -O2 -Rpass-missed=openmp-opt omp113.cpp missed.cpp:4:7: remark: Could not move globalized variable to the stack. Variable is potentially captured in call. Mark parameter as `__attribute__((noescape))` to override. [OMP113] As the remark suggests, this behaviour can be overridden using the noescape attribute. This tells the compiler that no reference to the object the pointer points to that is derived from the parameter value will survive after the function returns. The user is responsible for verifying that this assertion is correct. extern void use(__attribute__((noescape)) int *x);
void foo() {
$ clang++ -fopenmp -fopenmp-targets=nvptx64 -O2 -Rpass=openmp-opt omp113.cpp missed.cpp:4:7: remark: Moving globalized variable to the stack. [OMP110] int x; Diagnostic ScopeOpenMP target offloading missed remark. Transformed generic-mode kernel to SPMD-mode [OMP120]This optimization remark indicates that the execution strategy for the OpenMP target offloading kernel was changed. Generic-mode kernels are executed by a single thread that schedules parallel worker threads using a state machine. This code transformation can move a kernel that was initially generated in generic mode to SPMD-mode where all threads are active at the same time with no state machine. This execution strategy is closer to how the threads are actually executed on a GPU target. This is only possible if the instructions previously executed by a single thread have no side-effects or can be guarded. If the instructions have no side-effects they are simply recomputed by each thread. Generic-mode is often considerably slower than SPMD-mode because of the extra overhead required to separately schedule worker threads and pass data between them.This optimization allows users to use generic-mode semantics while achieving the performance of SPMD-mode. This can be helpful when defining shared memory between the threads using OMP111. ExamplesNormally, any kernel that contains split OpenMP target and parallel regions will be executed in generic-mode. Sometimes it is easier to use generic-mode semantics to define shared memory, or more tightly control the distribution of the threads. This shows a naive matrix-matrix multiplication that contains code that will need to be guarded. void matmul(int M, int N, int K, double *A, double *B, double *C) {
#pragma omp target teams distribute collapse(2) \
$ clang++ -fopenmp -fopenmp-targets=nvptx64 -fopenmp-version=51 -O2 -Rpass=openmp-opt omp120.cpp omp120.cpp:6:14: remark: Replaced globalized variable with 8 bytes of shared memory. [OMP111] This requires guarding the store to the shared variable sum and the store to the matrix C. This can be thought of as generating the code below. void matmul(int M, int N, int K, double *A, double *B, double *C) {
#pragma omp target teams distribute collapse(2) \
Diagnostic ScopeOpenMP target offloading optimization remark. Value has potential side effects preventing SPMD-mode execution. Add [[omp::assume("ompx_spmd_amenable")]] to the called function to override. [OMP121]This analysis remarks indicates that a potential side-effect that cannot be guarded prevents the target region from executing in SPMD-mode. SPMD-mode requires that each thread is active inside the region. Any instruction that cannot be either recomputed by each thread independently or guarded and executed by a single thread prevents the region from executing in SPMD-mode. This remark will attempt to print out the instructions preventing the region from being executed in SPMD-mode. Calls to functions outside the current translation unit will prevent this transformation from occurring as well, but can be overridden using an assumption stating that it contains no calls that prevent SPMD execution. ExamplesCalls to functions outside the current translation unit may contain instructions or operations that cannot be executed in SPMD-mode. extern int work();
void use(int x);
void foo() {
#pragma omp target teams
$ clang++ -fopenmp -fopenmp-targets=nvptx64 -O2 -Rpass-analysis=openmp-opt omp121.cpp
omp121.cpp:8:13: remark: Value has potential side effects preventing SPMD-mode
execution. Add `[[omp::assume("ompx_spmd_amenable")]]` to the called function
to override. [OMP121]
int x = work();
As the remark suggests, the problem is caused by the unknown call to the external function work. This can be overridden by asserting that it does not contain any code that prevents SPMD-mode execution. [[omp::assume("ompx_spmd_amenable")]] extern int work();
void use(int x);
void foo() {
#pragma omp target teams
$ clang++ -fopenmp -fopenmp-targets=nvptx64 -O2 -Rpass=openmp-opt omp121.cpp omp121.cpp:6:1: remark: Transformed generic-mode kernel to SPMD-mode. [OMP120] #pragma omp target teams ^ Diagnostic ScopeOpenMP target offloading analysis remark. Removing unused state machine from generic-mode kernel. [OMP130]This optimization remark indicates that an unused state machine was removed from a target region. This occurs when there are no parallel regions inside of a target construct. Normally, a state machine is required to schedule the threads inside of a parallel region. If there are no parallel regions, the state machine is unnecessary because there is only a single thread active at any time. ExamplesThis optimization should occur on any target region that does not contain any parallel work. void copy(int N, double *X, double *Y) {
#pragma omp target teams distribute map(tofrom: X[0:N]) map(tofrom: Y[0:N])
$ clang++ -fopenmp -fopenmp-targets=nvptx64 -O2 -Rpass=openmp-opt omp130.cpp omp130.cpp:2:1: remark: Removing unused state machine from generic-mode kernel. [OMP130] #pragma omp target teams distribute map(tofrom: X[0:N]) map(tofrom: Y[0:N]) ^ Diagnostic ScopeOpenMP target offloading optimization remark. Rewriting generic-mode kernel with a customized state machine. [OMP131]This optimization remark indicates that a generic-mode kernel on the device was specialized for the given target region. When offloading in generic-mode, a state machine is required to schedule the work between the parallel worker threads. This optimization specializes the state machine in cases where there is a known number of parallel regions inside the kernel. A much simpler state machine can be used if it is known that there is no nested parallelism and the number of regions to schedule is a static amount. ExamplesThis optimization should occur on any generic-mode kernel that has visibility on all parallel regions, but cannot be moved to SPMD-mode and has no nested parallelism. #pragma omp declare target
int TID;
#pragma omp end declare target
void foo() {
#pragma omp target
{
$ clang++ -fopenmp -fopenmp-targets=nvptx64 -O2 -Rpass=openmp-opt omp131.cpp omp131.cpp:8:1: remark: Rewriting generic-mode kernel with a customized state machine. [OMP131] #pragma omp target ^ Diagnostic ScopeOpenMP target offloading optimization remark. Generic-mode kernel is executed with a customized state machine that requires a fallback. [OMP132]This analysis remark indicates that a state machine rewrite occurred, but could not be done fully because of unknown calls to functions that may contain parallel regions. The state machine handles scheduling work between parallel worker threads on the device when operating in generic-mode. If there are unknown parallel regions it prevents the optimization from fully rewriting the state machine. ExamplesThis will occur for any generic-mode kernel that may contain unknown parallel regions. This is typically coupled with the OMP133 remark. extern void setup();
void foo() {
#pragma omp target
{
$ clang++ -fopenmp -fopenmp-targets=nvptx64 -O2 -Rpass-analysis=openmp-opt omp132.cpp omp133.cpp:4:1: remark: Generic-mode kernel is executed with a customized state machine that requires a fallback. [OMP132] #pragma omp target ^ Diagnostic ScopeOpenMP target offloading analysis remark. Call may contain unknown parallel regions. Use [[omp::assume("omp_no_parallelism")]] to override. [OMP133]This analysis remark identifies calls that prevented OMP131 from providing the generic-mode kernel with a fully specialized state machine. This remark will identify each call that may contain unknown parallel regions that caused the kernel to require a fallback. ExamplesThis will occur for any generic-mode kernel that may contain unknown parallel regions. This is typically coupled with the OMP132 remark. extern void setup();
void foo() {
#pragma omp target
{
$ clang++ -fopenmp -fopenmp-targets=nvptx64 -O2 -Rpass-analysis=openmp-opt omp133.cpp
omp133.cpp:6:5: remark: Call may contain unknown parallel regions. Use
`[[omp::assume("omp_no_parallelism")]]` to override. [OMP133]
setup();
^
The remark suggests marking the function with the assumption that it contains no parallel regions. If this is done then the kernel will be rewritten with a fully specialized state machine. [[omp::assume("omp_no_parallelism")]] extern void setup();
void foo() {
#pragma omp target
{
$ clang++ -fopenmp -fopenmp-targets=nvptx64 -O2 -Rpass=openmp-opt omp133.cpp omp133.cpp:4:1: remark: Rewriting generic-mode kernel with a customized state machine. [OMP131] #pragma omp target ^ Diagnostic ScopeOpenMP target offloading analysis remark. Could not internalize function. Some optimizations may not be possible. [OMP140]This analysis remark indicates that function internalization failed for the given function. Internalization occurs when a call to a function that ordinarily has external visibility is replaced with a call to a copy of that function with only internal visibility. This allows the compiler to make strong static assertions about the context a function is called in. Without internalization this analysis would always be invalidated by the possibility of someone calling the function in a different context outside of the current translation unit. This is necessary for optimizations like OMP111 and OMP120. If a function failed to be internalized it most likely has linkage that cannot be copied. Internalization is currently only enabled by default for OpenMP target offloading. ExamplesThis will occur for any function declaration that has incompatible linkage. __attribute__((weak)) void setup();
void foo() {
#pragma omp target
{
$ clang++ -fopenmp -fopenmp-targets=nvptx64 -O1 -Rpass-analysis=openmp-opt omp140.cpp
omp140.cpp:1:1: remark: Could not internalize function. Some optimizations may not
be possible. [OMP140]
__attribute__((weak)) void setup() {
^
Diagnostic ScopeOpenMP analysis remark. Parallel region merged with parallel region at <location>. [OMP150]This optimization remark indicates that a parallel region was merged with others into a single parallel region. Parallel region merging fuses consecutive parallel regions to reduce the team activation overhead of forking and increases the scope of possible OpenMP-specific optimizations within merged parallel regions. This optimization can also guard sequential code between two parallel regions if applicable. ExampleThis optimization should apply to any compatible and consecutive parallel regions. In this case the sequential region between the parallel regions will be guarded so it is only executed by a single thread in the new merged region. void foo() {
#pragma omp parallel
$ clang++ -fopenmp -O2 -Rpass=openmp-opt -mllvm -openmp-opt-enable-merging omp150.cpp omp150.cpp:2:1: remark: Parallel region merged with parallel region at merge.cpp:7:1. [OMP150] #pragma omp parallel ^ Diagnostic ScopeOpenMP optimization remark. Removing parallel region with no side-effects. [OMP160]This optimization remark indicates that a parallel region was deleted because it was not found to have any side-effects. This can occur if the region does not write any of its results to memory visible outside the region. This optimization is necessary because the barrier between sequential and parallel code typically prevents dead code elimination from completely removing the region. Otherwise there will still be overhead to fork and merge the threads with no work done. ExampleThis optimization occurs whenever a parallel region was not found to have any side-effects. This can occur if the parallel region only reads memory or is simply empty. void foo() {
#pragma omp parallel
$ clang++ -fopenmp -O2 -Rpass=openmp-opt omp160.cpp omp160.cpp:4:1: remark: Removing parallel region with no side-effects. [OMP160] [-Rpass=openmp-opt] #pragma omp parallel ^ delete.cpp:2:1: remark: Removing parallel region with no side-effects. [OMP160] [-Rpass=openmp-opt] #pragma omp parallel ^ ^ Diagnostic ScopeOpenMP optimization remark. OpenMP runtime call <call> deduplicated. [OMP170]This optimization remark indicates that a call to an OpenMP runtime call was replaced with the result of an existing one. This occurs when the compiler knows that the result of a runtime call is immutable. Removing duplicate calls is done by replacing all calls to that function with the result of the first call. This cannot be done automatically by the compiler because the implementations of the OpenMP runtime calls live in a separate library the compiler cannot see. ExampleThis optimization will trigger for known OpenMP runtime calls whose return value will not change. void foo(int N) {
$ clang -fopenmp -O2 -Rpass=openmp-opt omp170.c ompi170.c:2:26: remark: OpenMP runtime call omp_get_thread_limit deduplicated. [OMP170] double *A = malloc(N * omp_get_thread_limit()); Diagnostic ScopeOpenMP optimization remark. Replacing OpenMP runtime call <call> with <value>.This optimization remark indicates that analysis determined an OpenMP runtime calls can be replaced with a constant value. This can occur when an OpenMP runtime call that queried some internal state was found to always return a single value after analysis. ExampleThis optimization will trigger for most target regions to simplify the runtime once certain constants are known. This will trigger for internal runtime functions so it requires enabling verbose remarks with -openmp-opt-verbose-remarks (prefixed with -mllvm for use with clang). void foo() {
#pragma omp target parallel
$ clang test.c -fopenmp -fopenmp-targets=nvptx64 -O1 -Rpass=openmp-opt \ Diagnostic ScopeOpenMP optimization remark. Redundant barrier eliminated. (device only)This optimization remark indicates that analysis determined an aligned barrier in the device code to be redundant. This can occur when state updates that have been synchronized by the barrier were eliminated too. See also "Co-Designing an OpenMP GPU Runtime and Optimizations for Near-Zero Overhead Execution", IPDPS'22. ExampleThis optimization will trigger for most target regions if state initialization was removed as a consequence of "state forwarding". This will trigger for internal runtime functions so it requires enabling verbose remarks with -openmp-opt-verbose-remarks (prefixed with -mllvm for use with clang). Diagnostic ScopeOpenMP optimization remark.
In addition to the Clang command-line argument reference we also recommend the OpenMP command-line argument reference page that offers a detailed overview of options specific to OpenMP. It also contains a list of OpenMP offloading related command-line arguments. OPENMP COMMAND-LINE ARGUMENT REFERENCEWelcome to the OpenMP in LLVM command line argument reference. The content is not a complete list of arguments but includes the essential command-line arguments you may need when compiling and linking OpenMP. Section OpenMP Command-Line Arguments lists OpenMP command line options for multicore programming while Offloading Specific Command-Line Arguments lists options relevant to OpenMP target offloading. -fopenmpEnable the OpenMP compilation toolchain. The compiler will parse OpenMP compiler directives and generate parallel code. -fopenmp-extensionsEnable all Clang extensions for OpenMP directives and clauses. A list of current extensions and their implementation status can be found on the support page. -fopenmp-simdThis option enables OpenMP only for single instruction, multiple data (SIMD) constructs. -static-openmpUse the static OpenMP host runtime while linking. -fopenmp-version=<arg>Set the OpenMP version to a specific version <arg> of the OpenMP standard. For example, you may use -fopenmp-version=45 to select version 4.5 of the OpenMP standard. The default value is -fopenmp-version=51 for Clang. -fopenmp-targetsSpecify which OpenMP offloading targets should be supported. For example, you may specify -fopenmp-targets=amdgcn-amd-amdhsa,nvptx64. This option is often optional when --offload-arch is provided. It is also possible to offload to CPU architectures, for instance with -fopenmp-targets=x86_64-pc-linux-gnu. --offload-archSpecify the device architecture for OpenMP offloading. For instance --offload-arch=sm_80 to target an Nvidia Tesla A100, --offload-arch=gfx90a to target an AMD Instinct MI250X, or --offload-arch=sm_80,gfx90a to target both. It is also possible to specify -fopenmp-targets without specifying --offload-arch. In that case, the executables amdgpu-arch or nvptx-arch will be executed as part of the compiler driver to detect the device architecture automatically. Finally, the device architecture will also be automatically inferred with --offload-arch=native. --offload-device-onlyCompile only the code that goes on the device. This option is mainly for debugging purposes. It is primarily used for inspecting the intermediate representation (IR) output when compiling for the device. It may also be used if device-only runtimes are created. --offload-host-onlyCompile only the code that goes on the host. With this option enabled, the .llvm.offloading section with embedded device code will not be included in the intermediate representation. --offload-host-deviceCompile the target regions for both the host and the device. That is the default option. -Xopenmp-target <arg>Pass an argument <arg> to the offloading toolchain, for instance -Xopenmp-target -march=sm_80. -Xopenmp-target=<triple> <arg>Pass an argument <arg> to the offloading toolchain for the target <triple>. That is especially useful when an argument must differ for each triple. For instance -Xopenmp-target=nvptx64 --offload-arch=sm_80 -Xopenmp-target=amdgcn --offload-arch=gfx90a to specify the device architecture. Alternatively, -Xarch_host <arg> and -Xarch_device <arg> can pass an argument to the host and device compilation toolchain. -Xoffload-linker<triple> <arg>Pass an argument <arg> to the offloading linker for the target specified in <triple>. -Xarch_device <arg>Pass an argument <arg> to the device compilation toolchain. -Xarch_host <arg>Pass an argument <arg> to the host compilation toolchain. -foffload-lto[=<arg>]Enable device link time optimization (LTO) and select the LTO mode <arg>. Select either -foffload-lto=thin or -foffload-lto=full. Thin LTO takes less time while still achieving some performance gains. If no argument is set, this option defaults to -foffload-lto=full. -fopenmp-offload-mandatoryThis option is set to avoid generating the host fallback code executed when offloading to the device fails. That is helpful when the target contains code that cannot be compiled for the host, for instance, if it contains unguarded device intrinsics. This option can also be used to reduce compile time. This option should not be used when one wants to verify that the code is being offloaded to the device. Instead, set the environment variable OMP_TARGET_OFFLOAD='MANDATORY' to confirm that the code is being offloaded to the device. -fopenmp-target-debug[=<arg>]Enable debugging in the device runtime library (RTL). Note that it is both necessary to configure the debugging in the device runtime at compile-time with -fopenmp-target-debug=<arg> and enable debugging at runtime with the environment variable LIBOMPTARGET_DEVICE_RTL_DEBUG=<arg>. Further, it is currently only supported for Nvidia targets as of July 2023. Alternatively, the environment variable LIBOMPTARGET_DEBUG can be set to debug both Nvidia and AMD GPU targets. For more information, see the debugging instructions. The debugging instructions list the supported debugging arguments. -fopenmp-target-jitEmit code that is Just-in-Time (JIT) compiled for OpenMP offloading. Embed LLVM-IR for the device code in the object files rather than binary code for the respective target. At runtime, the LLVM-IR is optimized again and compiled for the target device. The optimization level can be set at runtime with LIBOMPTARGET_JIT_OPT_LEVEL, for instance, LIBOMPTARGET_JIT_OPT_LEVEL=3 corresponding to optimizations level -O3. See the OpenMP JIT details for instructions on extracting the embedded device code before or after the JIT and more. We want to emphasize that JIT for OpenMP offloading is good for debugging as the target IR can be extracted, modified, and injected at runtime. --offload-new-driverIn upstream LLVM, OpenMP only uses the new driver. However, enabling this option for experimental linking with CUDA or HIP files is necessary. --offload-linkUse the new offloading linker clang-linker-wrapper to perform the link job. clang-linker-wrapper is the default offloading linker for OpenMP. This option can be used to use the new offloading linker in toolchains that do not automatically use it. It is necessary to enable this option when linking with CUDA or HIP files. -nogpulibDo not link the device library for CUDA or HIP device compilation. -nogpuincDo not include the default CUDA or HIP headers, and do not add CUDA or HIP include paths. Dealing with OpenMP can be complicated. For help with the setup of an OpenMP (offload) capable compiler toolchain, its usage, and common problems, consult the Support and FAQ page. We also encourage everyone interested in OpenMP in LLVM to get involved. SUPPORT, GETTING INVOLVED, AND FAQPlease do not hesitate to reach out to us on the Discourse forums (Runtimes - OpenMP) or join one of our regular calls. Some common questions are answered in the FAQ. OpenMP in LLVM Technical Call
OpenMP in Flang Technical Call
FAQNOTE: The FAQ is a work in progress and most of the expected
content is not yet available. While you can expect changes, we always welcome
feedback and additions. Please post on the Discourse forums (Runtimes -
OpenMP).
Q: How to contribute a patch to the webpage or any other part?All patches go through the regular LLVM review process. Q: How to build an OpenMP GPU offload capable compiler?To build an effective OpenMP offload capable compiler, only one extra CMake option, LLVM_ENABLE_RUNTIMES="openmp", is needed when building LLVM (Generic information about building LLVM is available here.). Make sure all backends that are targeted by OpenMP are enabled. That can be done by adjusting the CMake option LLVM_TARGETS_TO_BUILD. The corresponding targets for offloading to AMD and Nvidia GPUs are "AMDGPU" and "NVPTX", respectively. By default, Clang will be built with all backends enabled. When building with LLVM_ENABLE_RUNTIMES="openmp" OpenMP should not be enabled in LLVM_ENABLE_PROJECTS because it is enabled by default. For Nvidia offload, please see Q: How to build an OpenMP Nvidia offload capable compiler?. For AMDGPU offload, please see Q: How to build an OpenMP AMDGPU offload capable compiler?. NOTE: The compiler that generates the offload code should be
the same (version) as the compiler that builds the OpenMP device runtimes. The
OpenMP host runtime can be built by a different compiler.
Q: How to build an OpenMP Nvidia offload capable compiler?The Cuda SDK is required on the machine that will execute the openmp application. If your build machine is not the target machine or automatic detection of the available GPUs failed, you should also set:
Q: How to build an OpenMP AMDGPU offload capable compiler?A subset of the ROCm toolchain is required to build the LLVM toolchain and to execute the openmp application. Either install ROCm somewhere that cmake's find_package can locate it, or build the required subcomponents ROCt and ROCr from source. The two components used are ROCT-Thunk-Interface, roct, and ROCR-Runtime, rocr. Roct is the userspace part of the linux driver. It calls into the driver which ships with the linux kernel. It is an implementation detail of Rocr from OpenMP's perspective. Rocr is an implementation of HSA. SOURCE_DIR=same-as-llvm-source # e.g. the checkout of llvm-project, next to openmp BUILD_DIR=somewhere INSTALL_PREFIX=same-as-llvm-install cd $SOURCE_DIR git clone git@github.com:RadeonOpenCompute/ROCT-Thunk-Interface.git -b roc-4.2.x \ IMAGE_SUPPORT requires building rocr with clang and is not used by openmp. Provided cmake's find_package can find the ROCR-Runtime package, LLVM will build a tool bin/amdgpu-arch which will print a string like gfx906 when run if it recognises a GPU on the local system. LLVM will also build a shared library, libomptarget.rtl.amdgpu.so, which is linked against rocr. With those libraries installed, then LLVM build and installed, try: clang -O2 -fopenmp -fopenmp-targets=amdgcn-amd-amdhsa example.c -o example && ./example If your build machine is not the target machine or automatic detection of the available GPUs failed, you should also set:
Q: What are the known limitations of OpenMP AMDGPU offload?LD_LIBRARY_PATH or rpath/runpath are required to find libomp.so and libomptarget.so There is no libc. That is, malloc and printf do not exist. Libm is implemented in terms of the rocm device library, which will be searched for if linking with '-lm'. Some versions of the driver for the radeon vii (gfx906) will error unless the environment variable 'export HSA_IGNORE_SRAMECC_MISREPORT=1' is set. It is a recent addition to LLVM and the implementation differs from that which has been shipping in ROCm and AOMP for some time. Early adopters will encounter bugs. Q: What are the LLVM components used in offloading and how are they found?The libraries used by an executable compiled for target offloading are:
The compiled executable is dynamically linked against a host runtime, e.g. libomp.so, and against the target offloading runtime, libomptarget.so. These are found like any other dynamic library, by setting rpath or runpath on the executable, by setting LD_LIBRARY_PATH, or by adding them to the system search. libomptarget.so is only supported to work with the associated clang compiler. On systems with globally installed libomptarget.so this can be problematic. For this reason it is recommended to use a Clang configuration file to automatically configure the environment. For example, store the following file as openmp.cfg next to your clang executable. # Library paths for OpenMP offloading. -L '<CFGDIR>/../lib' -Wl,-rpath='<CFGDIR>/../lib' The plugins will try to find their dependencies in plugin-dependent fashion. The cuda plugin is dynamically linked against libcuda if cmake found it at compiler build time. Otherwise it will attempt to dlopen libcuda.so. It does not have rpath set. The amdgpu plugin is linked against ROCr if cmake found it at compiler build time. Otherwise it will attempt to dlopen libhsa-runtime64.so. It has rpath set to $ORIGIN, so installing libhsa-runtime64.so in the same directory is a way to locate it without environment variables. In addition to those, there is a compiler runtime library called deviceRTL. This is compiled from mostly common code into an architecture specific bitcode library, e.g. libomptarget-nvptx-sm_70.bc. Clang and the deviceRTL need to match closely as the interface between them changes frequently. Using both from the same monorepo checkout is strongly recommended. Unlike the host side which lets environment variables select components, the deviceRTL that is located in the clang lib directory is preferred. Only if it is absent, the LIBRARY_PATH environment variable is searched to find a bitcode file with the right name. This can be overridden by passing a clang flag, --libomptarget-nvptx-bc-path or --libomptarget-amdgcn-bc-path. That can specify a directory or an exact bitcode file to use. Q: Does OpenMP offloading support work in pre-packaged LLVM releases?For now, the answer is most likely no. Please see Q: How to build an OpenMP GPU offload capable compiler?. Q: Does OpenMP offloading support work in packages distributed as part of my OS?For now, the answer is most likely no. Please see Q: How to build an OpenMP GPU offload capable compiler?. Q: Does Clang support <math.h> and <complex.h> operations in OpenMP target on GPUs?Yes, LLVM/Clang allows math functions and complex arithmetic inside of OpenMP target regions that are compiled for GPUs. Clang provides a set of wrapper headers that are found first when math.h and complex.h, for C, cmath and complex, for C++, or similar headers are included by the application. These wrappers will eventually include the system version of the corresponding header file after setting up a target device specific environment. The fact that the system header is included is important because they differ based on the architecture and operating system and may contain preprocessor, variable, and function definitions that need to be available in the target region regardless of the targeted device architecture. However, various functions may require specialized device versions, e.g., sin, and others are only available on certain devices, e.g., __umul64hi. To provide "native" support for math and complex on the respective architecture, Clang will wrap the "native" math functions, e.g., as provided by the device vendor, in an OpenMP begin/end declare variant. These functions will then be picked up instead of the host versions while host only variables and function definitions are still available. Complex arithmetic and functions are support through a similar mechanism. It is worth noting that this support requires extensions to the OpenMP begin/end declare variant context selector that are exposed through LLVM/Clang to the user as well. Q: What is a way to debug errors from mapping memory to a target device?An experimental way to debug these errors is to use remote process offloading. By using libomptarget.rtl.rpc.so and openmp-offloading-server, it is possible to explicitly perform memory transfers between processes on the host CPU and run sanitizers while doing so in order to catch these errors. Q: Can I use dynamically linked libraries with OpenMP offloading?Dynamically linked libraries can be only used if there is no device code split between the library and application. Anything declared on the device inside the shared library will not be visible to the application when it's linked. Q: How to build an OpenMP offload capable compiler with an outdated host compiler?Enabling the OpenMP runtime will perform a two-stage build for you. If your host compiler is different from your system-wide compiler, you may need to set CMAKE_{C,CXX}_FLAGS like --gcc-install-dir=/usr/lib/gcc/x86_64-linux-gnu/12 so that clang will be able to find the correct GCC toolchain in the second stage of the build. For example, if your system-wide GCC installation is too old to build LLVM and you would like to use a newer GCC, set --gcc-install-dir= to inform clang of the GCC installation you would like to use in the second stage. Q: How can I include OpenMP offloading support in my CMake project?Currently, there is an experimental CMake find module for OpenMP target offloading provided by LLVM. It will attempt to find OpenMP target offloading support for your compiler. The flags necessary for OpenMP target offloading will be loaded into the OpenMPTarget::OpenMPTarget_<device> target or the OpenMPTarget_<device>_FLAGS variable if successful. Currently supported devices are AMDGPU and NVPTX. To use this module, simply add the path to CMake's current module path and call find_package. The module will be installed with your OpenMP installation by default. Including OpenMP offloading support in an application should now only require a few additions. cmake_minimum_required(VERSION 3.20.0)
project(offloadTest VERSION 1.0 LANGUAGES CXX)
list(APPEND CMAKE_MODULE_PATH "${PATH_TO_OPENMP_INSTALL}/lib/cmake/openmp")
find_package(OpenMPTarget REQUIRED NVPTX)
add_executable(offload)
target_link_libraries(offload PRIVATE OpenMPTarget::OpenMPTarget_NVPTX)
target_sources(offload PRIVATE ${CMAKE_CURRENT_SOURCE_DIR}/src/Main.cpp)
Using this module requires at least CMake version 3.20.0. Supported languages are C and C++ with Fortran support planned in the future. Compiler support is best for Clang but this module should work for other compiler vendors such as IBM, GNU. Q: What does 'Stack size for entry function cannot be statically determined' mean?This is a warning that the Nvidia tools will sometimes emit if the offloading region is too complex. Normally, the CUDA tools attempt to statically determine how much stack memory each thread. This way when the kernel is launched each thread will have as much memory as it needs. If the control flow of the kernel is too complex, containing recursive calls or nested parallelism, this analysis can fail. If this warning is triggered it means that the kernel may run out of stack memory during execution and crash. The environment variable LIBOMPTARGET_STACK_SIZE can be used to increase the stack size if this occurs. Q: Can OpenMP offloading compile for multiple architectures?Since LLVM version 15.0, OpenMP offloading supports offloading to multiple architectures at once. This allows for executables to be run on different targets, such as offloading to AMD and NVIDIA GPUs simultaneously, as well as multiple sub-architectures for the same target. Additionally, static libraries will only extract archive members if an architecture is used, allowing users to create generic libraries. The architecture can either be specified manually using --offload-arch=. If --offload-arch= is present no -fopenmp-targets= flag is present then the targets will be inferred from the architectures. Conversely, if --fopenmp-targets= is present with no --offload-arch then the target architecture will be set to a default value, usually the architecture supported by the system LLVM was built on. For example, an executable can be built that runs on AMDGPU and NVIDIA hardware given that the necessary build tools are installed for both. clang example.c -fopenmp --offload-arch=gfx90a --offload-arch=sm_80 If just given the architectures we should be able to infer the triples, otherwise we can specify them manually. clang example.c -fopenmp -fopenmp-targets=amdgcn-amd-amdhsa,nvptx64-nvidia-cuda \ When linking against a static library that contains device code for multiple architectures, only the images used by the executable will be extracted. clang example.c -fopenmp --offload-arch=gfx90a,gfx90a,sm_70,sm_80 -c llvm-ar rcs libexample.a example.o clang app.c -fopenmp --offload-arch=gfx90a -o app The supported device images can be viewed using the --offloading option with llvm-objdump. clang example.c -fopenmp --offload-arch=gfx90a --offload-arch=sm_80 -o example llvm-objdump --offloading example a.out: file format elf64-x86-64 OFFLOADING IMAGE [0]: kind elf arch gfx90a triple amdgcn-amd-amdhsa producer openmp OFFLOADING IMAGE [1]: kind elf arch sm_80 triple nvptx64-nvidia-cuda producer openmp Q: Can I link OpenMP offloading with CUDA or HIP?OpenMP offloading files can currently be experimentally linked with CUDA and HIP files. This will allow OpenMP to call a CUDA device function or vice-versa. However, the global state will be distinct between the two images at runtime. This means any global variables will potentially have different values when queried from OpenMP or CUDA. Linking CUDA and HIP currently requires enabling a different compilation mode for CUDA / HIP with --offload-new-driver and to link using --offload-link. Additionally, -fgpu-rdc must be used to create a linkable device image. clang++ openmp.cpp -fopenmp --offload-arch=sm_80 -c clang++ cuda.cu --offload-new-driver --offload-arch=sm_80 -fgpu-rdc -c clang++ openmp.o cuda.o --offload-link -o app Q: Are libomptarget and plugins backward compatible?No. libomptarget and plugins are now built as LLVM libraries starting from LLVM 15. Because LLVM libraries are not backward compatible, libomptarget and plugins are not as well. Given that fact, the interfaces between 1) the Clang compiler and libomptarget, 2) the Clang compiler and device runtime library, and 3) libomptarget and plugins are not guaranteed to be compatible with an earlier version. Users are responsible for ensuring compatibility when not using the Clang compiler and runtime libraries from the same build. Nevertheless, in order to better support third-party libraries and toolchains that depend on existing libomptarget entry points, contributors are discouraged from making modifications to them. Q: Can I use libc functions on the GPU?LLVM provides basic libc functionality through the LLVM C Library. For building instructions, refer to the associated LLVM libc documentation. Once built, this provides a static library called libcgpu.a. See the documentation for a list of supported functions as well. To utilize these functions, simply link this library as any other when building with OpenMP. clang++ openmp.cpp -fopenmp --offload-arch=gfx90a -lcgpu For more information on how this is implemented in LLVM/OpenMP's offloading runtime, refer to the runtime documentation. Q: What command line options can I use for OpenMP?We recommend taking a look at the OpenMP command line argument reference page. Q: Can I build the offloading runtimes without CUDA or HSA?By default, the offloading runtime will load the associated vendor runtime during initialization rather than directly linking against them. This allows the program to be built and run on many machine. If you wish to directly link against these libraries, use the LIBOMPTARGET_DLOPEN_PLUGINS="" option to suppress it for each plugin. The default value is every plugin enabled with LIBOMPTARGET_PLUGINS_TO_BUILD. Q: Why is my build taking a long time?When installing OpenMP and other LLVM components, the build time on multicore systems can be significantly reduced with parallel build jobs. As suggested in LLVM Techniques, Tips, and Best Practices, one could consider using ninja as the generator. This can be done with the CMake option cmake -G Ninja. Afterward, use ninja install and specify the number of parallel jobs with -j. The build time can also be reduced by setting the build type to Release with the CMAKE_BUILD_TYPE option. Recompilation can also be sped up by caching previous compilations. Consider enabling Ccache with CMAKE_CXX_COMPILER_LAUNCHER=ccache. Q: Did this FAQ not answer your question?Feel free to post questions or browse old threads at LLVM Discourse. The current (in-progress) release notes can be found here while release notes for releases, starting with LLVM 12, will be available on the Download Page. OPENMP 19.0.0 RELEASE NOTESWARNING: These are in-progress notes for the upcoming LLVM 19.0.0
release. Release notes for previous releases can be found on the Download
Page.
IntroductionThis document contains the release notes for the OpenMP runtime, release 19.0.0. Here we describe the status of OpenMP, including major improvements from the previous release. All OpenMP releases may be downloaded from the LLVM releases web site. AUTHORunknown COPYRIGHT2013-2026, LLVM/OpenMP
|