From 467e2884afd692ae2a6b861e19e24e20d3b3922a Mon Sep 17 00:00:00 2001 From: Andreas Herten <a.herten@fz-juelich.de> Date: Wed, 28 Jun 2023 09:08:02 +0200 Subject: [PATCH] fix also master file --- 02-MSA-hello-world-gpu/.master/hello-world.cu | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/02-MSA-hello-world-gpu/.master/hello-world.cu b/02-MSA-hello-world-gpu/.master/hello-world.cu index 8c71020..5aa2b44 100644 --- a/02-MSA-hello-world-gpu/.master/hello-world.cu +++ b/02-MSA-hello-world-gpu/.master/hello-world.cu @@ -51,7 +51,7 @@ int main(int argc, char** argv){ CUDA_RT_CALL( cudaPeekAtLastError() ); CUDA_RT_CALL( cudaDeviceSynchronize() ); - // TODO: Implement the MPI_Recv() call to receive the "payload" from rank 1 using directly "d_payload" as the target buffer on the GPU + // TODO: Implement the MPI_Recv() call to receive the "payload" from rank 0 using directly "d_payload" as the target buffer on the GPU if (rank == 1) { #ifdef SOLUTION MPI_Recv(d_payload, 6, MPI_CHAR, 0, tag, MPI_COMM_WORLD, &stat); -- GitLab