[clang] [flang] [llvm] [openmp] [OpenMP][Offload] Add offload runtime support for dyn_groupprivate clause (PR #152831)
Alex Duran via cfe-commits
cfe-commits at lists.llvm.org
Tue Mar 10 09:08:36 PDT 2026
================
@@ -171,9 +171,24 @@ typedef enum omp_allocator_handle_t {
KMP_ALLOCATOR_MAX_HANDLE = ~(0LU)
} omp_allocator_handle_t;
+typedef enum omp_memspace_handle_t {
+ omp_null_mem_space = 0,
+ omp_cgroup_mem_space = 5,
----------------
adurang wrote:
5 is the value currently assigned in the spec to omp_low_lat_mem_space, are you sure this is correct?
https://github.com/llvm/llvm-project/pull/152831
More information about the cfe-commits
mailing list