Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Fix compilation with tracing and new network_element_t
[simgrid.git] / examples / lua / multi_matrix / sender.lua
index bdf535f..dfd1ae8 100644 (file)
@@ -20,7 +20,7 @@ function Sender(...)
   task['matrix_1'] = m1
   task['matrix_2'] = m2
   task['size'] = size
-  simgrid.info("Sending " .. simgrid.task.name(task) .. " to " .. simgrid.host.name(receiver))
+  simgrid.info("Sending " .. simgrid.task.get_name(task) .. " to " .. simgrid.host.name(receiver))
   simgrid.task.send(task, rec_alias)
   simgrid.info("Got the Multiplication result ...Bye")
 end