[llvm] [OpenMP] Replace most GPU helpers with ones from <gpuintrin.h> (PR #125771)

Jon Chesterfield via llvm-commits llvm-commits at lists.llvm.org
Mon Feb 24 10:19:00 PST 2025


================
@@ -196,8 +196,8 @@ int32_t __kmpc_nvptx_teams_reduce_nowait_v2(
   uint32_t NumThreads = omp_get_num_threads();
   uint32_t TeamId = omp_get_team_num();
   uint32_t NumTeams = omp_get_num_teams();
-  static unsigned SHARED(Bound);
-  static unsigned SHARED(ChunkTeamCount);
+  static unsigned __gpu_local Bound;
----------------
JonChesterfield wrote:

which means these have lost their uninitialised, and now pretend to be zero initialised, which should be falling over if they aren't deadstripped

https://github.com/llvm/llvm-project/pull/125771


More information about the llvm-commits mailing list