Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Use this variable so that gcc does not warn anymore.
[simgrid.git] / examples / msg / gpu / test_MSG_gpu_task_create.c
index 05d34bf..a490f15 100644 (file)
@@ -4,6 +4,11 @@
 /* This program is free software; you can redistribute it and/or modify it
  * under the terms of the license (GNU LGPL) which comes with this package. */
 
+/** @addtogroup MSG_examples
+ * 
+ * - <b>gpu/test_MSG_gpu_task_create.c</b> Example of use of the very experimental (for now) GPU resource. 
+ */
+
 #include <stdio.h>
 #include <stdlib.h>
 #include "msg/msg.h"
@@ -25,7 +30,7 @@ int main(int argc, char *argv[])
 
   mytask = MSG_gpu_task_create("testTask", 2000.0, 20.0, 20.0);
 
-
+  XBT_INFO("GPU task %p was created", mytask);
 
   MSG_clean();