Selaa lähdekoodia

mpi cache: reduce allocation size

cache_sent is actually just a boolean. We could even use a bitmap
Samuel Thibault 5 vuotta sitten
vanhempi
commit
4669e6f310
1 muutettua tiedostoa jossa 1 lisäystä ja 1 poistoa
  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 */