From 8d2dca4505799720b1b6bd31af4dbbdc12f66998 Mon Sep 17 00:00:00 2001 From: Aurelien Bouteiller Date: Wed, 7 Jan 2026 10:39:57 -0500 Subject: [PATCH] Fix DEBUG build (#378) [ROCm/rocshmem commit: 27d87b8b67d0d50e8d9e03181769f74cc19b8e91] --- projects/rocshmem/src/rocshmem_gpu.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/projects/rocshmem/src/rocshmem_gpu.cpp b/projects/rocshmem/src/rocshmem_gpu.cpp index 648a19cf81..bc2b2099f1 100644 --- a/projects/rocshmem/src/rocshmem_gpu.cpp +++ b/projects/rocshmem/src/rocshmem_gpu.cpp @@ -546,8 +546,8 @@ __device__ void rocshmem_ctx_alltoall_wg(rocshmem_ctx_t ctx, template __device__ void rocshmem_alltoall_wg(rocshmem_team_t team, T *dest, const T *source, int nelem) { - GPU_DPRINTF("Function: rocshmem_alltoall_wg (ctx=%zd, team=%zd, dest=%p, source=%p, nelem=%d\n", - ctx.ctx_opaque, team, dest, source, nelem); + GPU_DPRINTF("Function: rocshmem_alltoall_wg (team=%zd, dest=%p, source=%p, nelem=%d\n", + team, dest, source, nelem); get_internal_ctx(ROCSHMEM_CTX_DEFAULT)->alltoall(team, dest, source, nelem); }