X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/61e948b810774df0ab0a52dd60ca1fb16af658c5..3d489fd0ea1a24796b898737fdd6a67a8b7bedab:/src/simdag/simdag_private.h diff --git a/src/simdag/simdag_private.h b/src/simdag/simdag_private.h index 4f50be5c73..9691647fbd 100644 --- a/src/simdag/simdag_private.h +++ b/src/simdag/simdag_private.h @@ -6,52 +6,34 @@ #ifndef SIMDAG_PRIVATE_H #define SIMDAG_PRIVATE_H - -#include "xbt/base.h" -#include "xbt/dict.h" +#include +#include #include "xbt/dynar.h" #include "simgrid/simdag.h" #include "surf/surf.h" #include "xbt/mallocator.h" #include +#if HAVE_JEDULE +#include "simgrid/jedule/jedule_sd_binding.h" +#endif SG_BEGIN_DECL() /* Global variables */ typedef struct SD_global { - sg_host_t *host_list; /* array of workstations, created only if - necessary in sg_host_list() */ - SD_link_t *link_list; /* array of links */ - SD_link_t *recyclable_route; /* array returned by SD_route_get_list - and mallocated only once */ - - xbt_mallocator_t task_mallocator; /* to not remalloc new tasks */ - - int watch_point_reached; /* has a task just reached a watch point? */ + bool watch_point_reached; /* has a task just reached a watch point? */ - xbt_dynar_t initial_task_set; - xbt_dynar_t executable_task_set; - xbt_dynar_t completed_task_set; + std::set *initial_tasks; + std::set *runnable_tasks; + std::set *completed_tasks; xbt_dynar_t return_set; - int task_number; } s_SD_global_t, *SD_global_t; extern XBT_PRIVATE SD_global_t sd_global; -/* Storage */ -typedef s_xbt_dictelm_t s_SD_storage_t; -typedef struct SD_storage { - void *data; /* user data */ - const char *host; -} s_SD_storage_priv_t, *SD_storage_priv_t; - -static inline SD_storage_priv_t SD_storage_priv(SD_storage_t storage){ - return (SD_storage_priv_t)xbt_lib_get_level(storage, SD_STORAGE_LEVEL); -} - /* Task */ typedef struct SD_task { e_SD_task_state_t state; @@ -69,54 +51,23 @@ typedef struct SD_task { int marked; /* used to check if the task DAG has some cycle*/ /* dependencies */ - xbt_dynar_t tasks_before; - xbt_dynar_t tasks_after; - int unsatisfied_dependencies; - unsigned int is_not_ready; + std::set *inputs; + std::set *outputs; + std::set *predecessors; + std::set *successors; /* scheduling parameters (only exist in state SD_SCHEDULED) */ - int host_count; - sg_host_t *host_list; + std::vector *allocation; double *flops_amount; double *bytes_amount; double rate; - - long long int counter; /* task unique identifier for instrumentation */ - char *category; /* sd task category for instrumentation */ } s_SD_task_t; -/* Task dependencies */ -typedef struct SD_dependency { - char *name; - void *data; - SD_task_t src; - SD_task_t dst; - /* src must be finished before dst can start */ -} s_SD_dependency_t, *SD_dependency_t; - /* SimDag private functions */ XBT_PRIVATE void SD_task_set_state(SD_task_t task, e_SD_task_state_t new_state); XBT_PRIVATE void SD_task_run(SD_task_t task); XBT_PRIVATE bool acyclic_graph_detail(xbt_dynar_t dag); XBT_PRIVATE void uniq_transfer_task_name(SD_task_t task); -/* Task mallocator functions */ -XBT_PRIVATE void* SD_task_new_f(void); -XBT_PRIVATE void SD_task_recycle_f(void *t); -XBT_PRIVATE void SD_task_free_f(void *t); - -/* Functions to test if the task is in a given state. */ - -/* Returns whether the given task is scheduled or runnable. */ -static XBT_INLINE int __SD_task_is_scheduled_or_runnable(SD_task_t task) -{ - return task->state == SD_SCHEDULED || task->state == SD_RUNNABLE; -} - -/********** Storage **********/ -XBT_PRIVATE SD_storage_t __SD_storage_create(void *surf_storage, void *data); -XBT_PRIVATE void __SD_storage_destroy(void *storage); - SG_END_DECL() - #endif