X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/49b2b92e20fa8e1796729f15976aae4a96a92729..28e551b6fecfd104b32673d6a420fbd997f20539:/src/msg/msg_private.h diff --git a/src/msg/msg_private.h b/src/msg/msg_private.h index b45fd87399..3934c2c213 100644 --- a/src/msg/msg_private.h +++ b/src/msg/msg_private.h @@ -45,6 +45,16 @@ typedef struct simdata_task { double *comm_amount; } s_simdata_task_t; + +/*************** Begin GPU ***************/ +typedef struct simdata_gpu_task { + double computation_amount; /* Computation size */ + double dispatch_latency; + double collect_latency; + int isused; /* Indicates whether the task is used in SIMIX currently */ +} s_simdata_gpu_task_t; +/*************** End GPU ***************/ + /******************************* Process *************************************/ typedef struct simdata_process {