소스 검색

backport branches/starpu-1.1@13972: mpi: fix signature for starpu_mpi_issend_detached

Nathalie Furmento 10 년 전
부모
커밋
b267b3c42e
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      mpi/tests/ring_sync_detached.c

+ 1 - 1
mpi/tests/ring_sync_detached.c

@@ -127,7 +127,7 @@ int main(int argc, char **argv)
 		else
 		{
 			int sent = 0;
-			starpu_mpi_isend_detached(token_handle, (rank+1)%size, tag+1, MPI_COMM_WORLD, callback, &sent);
+			starpu_mpi_issend_detached(token_handle, (rank+1)%size, tag+1, MPI_COMM_WORLD, callback, &sent);
 
 			STARPU_PTHREAD_MUTEX_LOCK(&mutex);
 			while (!sent)