This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch devel/omp/gcc-11 in repository gcc.
from 8f7d25feef1 fortran: OpenMP/OpenACC array mapping alignment fix (PR90030) new 0054c371365 OpenMP: allow requires dynamic_allocators new 5f702eb7ad1 nvptx: bump default to PTX 4.1 new 4da9ae405b0 libgomp, nvptx: low-latency memory allocator
The 3 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: gcc/ChangeLog.omp | 9 + gcc/c/ChangeLog.omp | 4 + gcc/c/c-parser.c | 3 - gcc/config/nvptx/nvptx-opts.h | 2 +- gcc/config/nvptx/nvptx.c | 2 +- gcc/config/nvptx/nvptx.opt | 8 +- gcc/cp/ChangeLog.omp | 4 + gcc/cp/parser.c | 3 - gcc/doc/invoke.texi | 4 +- gcc/fortran/ChangeLog.omp | 4 + gcc/fortran/openmp.c | 4 - gcc/testsuite/ChangeLog.omp | 5 + gcc/testsuite/gfortran.dg/gomp/requires-8.f90 | 2 +- libgomp/ChangeLog.omp | 28 ++ libgomp/allocator.c | 203 +++++++++----- libgomp/config/nvptx/allocator.c | 370 ++++++++++++++++++++++++++ libgomp/config/nvptx/team.c | 25 ++ libgomp/plugin/plugin-nvptx.c | 23 +- libgomp/testsuite/libgomp.c/allocators-1.c | 56 ++++ libgomp/testsuite/libgomp.c/allocators-2.c | 64 +++++ libgomp/testsuite/libgomp.c/allocators-3.c | 42 +++ libgomp/testsuite/libgomp.c/allocators-4.c | 196 ++++++++++++++ libgomp/testsuite/libgomp.c/allocators-5.c | 63 +++++ libgomp/testsuite/libgomp.c/allocators-6.c | 117 ++++++++ 24 files changed, 1150 insertions(+), 91 deletions(-) create mode 100644 libgomp/config/nvptx/allocator.c create mode 100644 libgomp/testsuite/libgomp.c/allocators-1.c create mode 100644 libgomp/testsuite/libgomp.c/allocators-2.c create mode 100644 libgomp/testsuite/libgomp.c/allocators-3.c create mode 100644 libgomp/testsuite/libgomp.c/allocators-4.c create mode 100644 libgomp/testsuite/libgomp.c/allocators-5.c create mode 100644 libgomp/testsuite/libgomp.c/allocators-6.c