From: Jon Chesterfield Date: Wed, 18 Aug 2021 23:12:33 +0000 (+0100) Subject: [libomptarget][nfc][devicertl] Delete unused enums X-Git-Tag: upstream/15.0.7~33560 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c480792b6ad242d2fae41bf6a850974eb60ff6c4;p=platform%2Fupstream%2Fllvm.git [libomptarget][nfc][devicertl] Delete unused enums --- 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 {