From c480792b6ad242d2fae41bf6a850974eb60ff6c4 Mon Sep 17 00:00:00 2001 From: Jon Chesterfield Date: Thu, 19 Aug 2021 00:12:33 +0100 Subject: [PATCH] [libomptarget][nfc][devicertl] Delete unused enums --- openmp/libomptarget/deviceRTLs/amdgcn/src/target_impl.h | 2 -- openmp/libomptarget/deviceRTLs/nvptx/src/target_impl.h | 4 ---- 2 files changed, 6 deletions(-) diff --git a/openmp/libomptarget/deviceRTLs/amdgcn/src/target_impl.h b/openmp/libomptarget/deviceRTLs/amdgcn/src/target_impl.h index 615335d..fe1c6a7 100644 --- a/openmp/libomptarget/deviceRTLs/amdgcn/src/target_impl.h +++ b/openmp/libomptarget/deviceRTLs/amdgcn/src/target_impl.h @@ -49,8 +49,6 @@ // Data sharing related quantities, need to match what is used in the compiler. enum DATA_SHARING_SIZES { - // The maximum number of workers in a kernel. - DS_Max_Worker_Threads = 960, // The size reserved for data in a shared memory slot. DS_Slot_Size = 256, // The slot size that should be reserved for a working warp. diff --git a/openmp/libomptarget/deviceRTLs/nvptx/src/target_impl.h b/openmp/libomptarget/deviceRTLs/nvptx/src/target_impl.h index 9e69f60..a2346d4 100644 --- a/openmp/libomptarget/deviceRTLs/nvptx/src/target_impl.h +++ b/openmp/libomptarget/deviceRTLs/nvptx/src/target_impl.h @@ -61,16 +61,12 @@ // Data sharing related quantities, need to match what is used in the compiler. enum DATA_SHARING_SIZES { - // The maximum number of workers in a kernel. - DS_Max_Worker_Threads = 992, // The size reserved for data in a shared memory slot. DS_Slot_Size = 256, // The slot size that should be reserved for a working warp. DS_Worker_Warp_Slot_Size = WARPSIZE * DS_Slot_Size, // The maximum number of warps in use DS_Max_Warp_Number = 32, - // The size of the preallocated shared memory buffer per team - DS_Shared_Memory_Size = 128, }; enum : __kmpc_impl_lanemask_t { -- 2.7.4