소스 검색

mpi cache: reduce allocation size

cache_sent is actually just a boolean. We could even use a bitmap
Samuel Thibault 5 년 전
부모
커밋
4669e6f310
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      mpi/src/starpu_mpi_private.h

+ 1 - 1
mpi/src/starpu_mpi_private.h

@@ -200,7 +200,7 @@ struct _starpu_mpi_data
 {
 	int magic;
 	struct _starpu_mpi_node_tag node_tag;
-	int *cache_sent;
+	char *cache_sent;
 	int cache_received;
 
 	/** Rendez-vous data for opportunistic cooperative sends */