Hi! On 2023-02-16T18:06:41+0000, Andrew Stubbs <a...@codesourcery.com> wrote: > 2. 230216-amd-low-lat.patch > > Allocate the memory, adjust the default address space, and hook up the > allocator.
Like done for nvptx in og12 commit 23f52e49368d7b26a1b1a72d6bb903d31666e961 "Miscellaneous clean-up re OpenMP 'ompx_unified_shared_mem_space', 'ompx_host_mem_space'", I've now pushed the corresponding GCN 'ompx_host_mem_space' thing to devel/omp/gcc-12 branch in commit b39e4bbab59f5e4b551c44dbce0ce3acf4afc22a "Miscellaneous clean-up re OpenMP 'ompx_host_mem_space'", see attached. Grüße Thomas ----------------- Siemens Electronic Design Automation GmbH; Anschrift: Arnulfstraße 201, 80634 München; Gesellschaft mit beschränkter Haftung; Geschäftsführer: Thomas Heurung, Frank Thürauf; Sitz der Gesellschaft: München; Registergericht München, HRB 106955
>From b39e4bbab59f5e4b551c44dbce0ce3acf4afc22a Mon Sep 17 00:00:00 2001 From: Thomas Schwinge <tho...@codesourcery.com> Date: Fri, 17 Feb 2023 14:13:15 +0100 Subject: [PATCH] Miscellaneous clean-up re OpenMP 'ompx_host_mem_space' Like done for nvptx in og12 commit 23f52e49368d7b26a1b1a72d6bb903d31666e961 "Miscellaneous clean-up re OpenMP 'ompx_unified_shared_mem_space', 'ompx_host_mem_space'". Clean-up for og12 commit c77c45a641fedc3fe770e909cc010fb1735bdbbd "amdgcn, libgomp: low-latency allocator". No functional change. libgomp/ * config/gcn/allocator.c (gcn_memspace_free): Explicitly handle 'memspace == ompx_host_mem_space'. --- libgomp/ChangeLog.omp | 3 +++ libgomp/config/gcn/allocator.c | 4 ++++ 2 files changed, 7 insertions(+) diff --git a/libgomp/ChangeLog.omp b/libgomp/ChangeLog.omp index 63d1f563d5d..ef957e3d2d8 100644 --- a/libgomp/ChangeLog.omp +++ b/libgomp/ChangeLog.omp @@ -1,5 +1,8 @@ 2023-03-24 Thomas Schwinge <tho...@codesourcery.com> + * config/gcn/allocator.c (gcn_memspace_free): Explicitly handle + 'memspace == ompx_host_mem_space'. + Backported from master: 2023-03-24 Thomas Schwinge <tho...@codesourcery.com> diff --git a/libgomp/config/gcn/allocator.c b/libgomp/config/gcn/allocator.c index 001de89ffe0..e9980f6f98e 100644 --- a/libgomp/config/gcn/allocator.c +++ b/libgomp/config/gcn/allocator.c @@ -36,6 +36,7 @@ when the memspace access trait is set accordingly. */ #include "libgomp.h" +#include <assert.h> #include <stdlib.h> #define BASIC_ALLOC_PREFIX __gcn_lowlat @@ -86,6 +87,9 @@ gcn_memspace_free (omp_memspace_handle_t memspace, void *addr, size_t size) __gcn_lowlat_free (shared_pool, addr, size); } + else if (memspace == ompx_host_mem_space) + /* Just verify what all allocator functions return. */ + assert (addr == NULL); else free (addr); } -- 2.25.1