3 /* Copyright (c) 2005 Arnaud Legrand. All rights reserved. */
5 /* This program is free software; you can redistribute it and/or modify it
6 * under the terms of the license (GNU LGPL) which comes with this package. */
10 #include "surf_private.h"
12 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(surf_workstation, surf,
13 "Logging specific to the SURF workstation module (KCCFLN05)");
14 XBT_LOG_EXTERNAL_CATEGORY(surf_parse);
17 SURF_WORKSTATION_RESOURCE_CPU,
18 SURF_WORKSTATION_RESOURCE_LINK,
19 } e_surf_workstation_model_type_t;
22 /**************************************/
23 /********* router object **************/
24 /**************************************/
25 typedef struct router_KCCFLN05 {
28 } s_router_KCCFLN05_t, *router_KCCFLN05_t;
31 /**************************************/
32 /********* cpu object *****************/
33 /**************************************/
34 typedef struct cpu_KCCFLN05 {
35 surf_model_t model; /* Do not move this field: must match model_obj_t */
36 xbt_dict_t properties; /* Do not move this field: must match link_KCCFLN05_t */
37 e_surf_workstation_model_type_t type; /* Do not move this field: must match link_KCCFLN05_t */
38 char *name; /* Do not move this field: must match link_KCCFLN05_t */
39 lmm_constraint_t constraint;
43 double interference_send;
44 double interference_recv;
45 double interference_send_recv;
46 tmgr_trace_event_t power_event;
47 e_surf_cpu_state_t state_current;
48 tmgr_trace_event_t state_event;
49 int id; /* cpu and network card are a single object... */
50 xbt_dynar_t incomming_communications;
51 xbt_dynar_t outgoing_communications;
52 } s_cpu_KCCFLN05_t, *cpu_KCCFLN05_t;
54 /**************************************/
55 /*********** network object ***********/
56 /**************************************/
58 typedef struct link_KCCFLN05 {
59 surf_model_t model; /* Do not move this field: must match model_obj_t */
60 xbt_dict_t properties; /* Do not move this field: must match cpu_KCCFLN05_t */
61 e_surf_workstation_model_type_t type; /* Do not move this field: must match cpu_KCCFLN05_t */
62 char *name; /* Do not move this field: must match cpu_KCCFLN05_t */
63 lmm_constraint_t constraint;
65 tmgr_trace_event_t lat_event;
67 tmgr_trace_event_t bw_event;
68 e_surf_link_state_t state_current;
69 tmgr_trace_event_t state_event;
70 } s_link_KCCFLN05_t, *link_KCCFLN05_t;
73 typedef struct s_route_KCCFLN05 {
76 double impact_on_src_with_other_recv;
77 double impact_on_dst_with_other_send;
78 link_KCCFLN05_t *links;
80 } s_route_KCCFLN05_t, *route_KCCFLN05_t;
82 /**************************************/
83 /*************** actions **************/
84 /**************************************/
85 typedef struct surf_action_workstation_KCCFLN05 {
86 s_surf_action_t generic_action;
89 lmm_variable_t variable;
92 cpu_KCCFLN05_t src; /* could be avoided */
93 cpu_KCCFLN05_t dst; /* could be avoided */
94 } s_surf_action_workstation_KCCFLN05_t,
95 *surf_action_workstation_KCCFLN05_t;
99 static int nb_workstation = 0;
100 static s_route_KCCFLN05_t *routing_table = NULL;
101 #define ROUTE(i,j) routing_table[(i)+(j)*nb_workstation]
102 static link_KCCFLN05_t loopback = NULL;
103 static xbt_dict_t parallel_task_link_set = NULL;
104 //added to work with GTNETS
105 static xbt_dict_t router_set = NULL;
106 static lmm_system_t maxmin_system = NULL;
109 /* convenient function */
110 static void __update_cpu_usage(cpu_KCCFLN05_t cpu)
113 surf_action_workstation_KCCFLN05_t action = NULL;
114 if ((!xbt_dynar_length(cpu->incomming_communications)) &&
115 (!xbt_dynar_length(cpu->outgoing_communications))) {
116 /* No communications */
117 lmm_update_constraint_bound(maxmin_system, cpu->constraint,
118 cpu->power_current * cpu->power_scale);
119 } else if ((!xbt_dynar_length(cpu->incomming_communications))
120 && (xbt_dynar_length(cpu->outgoing_communications))) {
122 lmm_update_constraint_bound(maxmin_system, cpu->constraint,
123 cpu->power_current * cpu->power_scale *
124 cpu->interference_send);
125 xbt_dynar_foreach(cpu->outgoing_communications, cpt, action)
126 lmm_elem_set_value(maxmin_system, cpu->constraint,
128 cpu->power_current * cpu->power_scale *
129 ROUTE(action->src->id,
130 action->dst->id).impact_on_src);
131 } else if ((xbt_dynar_length(cpu->incomming_communications))
132 && (!xbt_dynar_length(cpu->outgoing_communications))) {
134 lmm_update_constraint_bound(maxmin_system, cpu->constraint,
135 cpu->power_current * cpu->power_scale *
136 cpu->interference_recv);
137 xbt_dynar_foreach(cpu->incomming_communications, cpt, action)
138 lmm_elem_set_value(maxmin_system, cpu->constraint,
140 cpu->power_current * cpu->power_scale *
141 ROUTE(action->src->id,
142 action->dst->id).impact_on_dst);
144 /* Emission & Reception */
145 lmm_update_constraint_bound(maxmin_system, cpu->constraint,
146 cpu->power_current * cpu->power_scale *
147 cpu->interference_send_recv);
148 xbt_dynar_foreach(cpu->outgoing_communications, cpt, action)
149 lmm_elem_set_value(maxmin_system, cpu->constraint,
151 cpu->power_current * cpu->power_scale *
152 ROUTE(action->src->id,
154 impact_on_src_with_other_recv);
155 xbt_dynar_foreach(cpu->incomming_communications, cpt, action)
156 lmm_elem_set_value(maxmin_system, cpu->constraint,
158 cpu->power_current * cpu->power_scale *
159 ROUTE(action->src->id,
161 impact_on_dst_with_other_send);
165 /**************************************/
166 /******* Resource Public **********/
167 /**************************************/
169 static void *name_service(const char *name)
175 res = xbt_dict_get(workstation_set, name);
177 if (e.category != not_found_error)
179 WARN1("Host '%s' not found, verifing if it is a router", name);
187 static const char *get_resource_name(void *resource_id)
189 /* We can freely cast as a cpu_KCCFLN05_t because it has the same
190 prefix as link_KCCFLN05_t. However, only cpu_KCCFLN05_t
191 will theoretically be given as an argument here. */
192 return ((cpu_KCCFLN05_t) resource_id)->name;
195 static xbt_dict_t get_properties(void *resource)
197 /* We can freely cast as a cpu_KCCFLN05_t because it has the same
198 prefix as link_KCCFLN05_t. */
199 return ((cpu_KCCFLN05_t) resource)->properties;
202 /* action_get_state is inherited from the surf module */
204 static void action_use(surf_action_t action)
210 static int action_free(surf_action_t action)
213 surf_action_t act = NULL;
214 cpu_KCCFLN05_t src = ((surf_action_workstation_KCCFLN05_t) action)->src;
215 cpu_KCCFLN05_t dst = ((surf_action_workstation_KCCFLN05_t) action)->dst;
218 if (!action->using) {
219 xbt_swag_remove(action, action->state_set);
220 if (((surf_action_workstation_KCCFLN05_t) action)->variable)
221 lmm_variable_free(maxmin_system,
222 ((surf_action_workstation_KCCFLN05_t) action)->
225 xbt_dynar_foreach(src->outgoing_communications, cpt, act)
227 xbt_dynar_remove_at(src->outgoing_communications, cpt, &act);
232 xbt_dynar_foreach(dst->incomming_communications, cpt, act)
234 xbt_dynar_remove_at(dst->incomming_communications, cpt, &act);
238 if (src && (!xbt_dynar_length(src->outgoing_communications)))
239 __update_cpu_usage(src);
240 if (dst && (!xbt_dynar_length(dst->incomming_communications)))
241 __update_cpu_usage(dst);
249 static void action_cancel(surf_action_t action)
251 surf_action_change_state(action, SURF_ACTION_FAILED);
255 static void action_recycle(surf_action_t action)
261 /* action_change_state is inherited from the surf module */
262 /* action_set_data is inherited from the surf module */
264 static void action_suspend(surf_action_t action)
266 XBT_IN1("(%p))", action);
267 if (((surf_action_workstation_KCCFLN05_t) action)->suspended != 2) {
268 ((surf_action_workstation_KCCFLN05_t) action)->suspended = 1;
269 lmm_update_variable_weight(maxmin_system,
270 ((surf_action_workstation_KCCFLN05_t)
271 action)->variable, 0.0);
276 static void action_resume(surf_action_t action)
278 XBT_IN1("(%p)", action);
279 if (((surf_action_workstation_KCCFLN05_t) action)->suspended != 2) {
280 if (((surf_action_workstation_KCCFLN05_t) action)->lat_current == 0.0)
281 lmm_update_variable_weight(maxmin_system,
282 ((surf_action_workstation_KCCFLN05_t)
283 action)->variable, action->priority);
285 lmm_update_variable_weight(maxmin_system,
286 ((surf_action_workstation_KCCFLN05_t)
288 ((surf_action_workstation_KCCFLN05_t)
289 action)->lat_current);
291 ((surf_action_workstation_KCCFLN05_t) action)->suspended = 0;
296 static int action_is_suspended(surf_action_t action)
298 return (((surf_action_workstation_KCCFLN05_t) action)->suspended == 1);
301 static void action_set_max_duration(surf_action_t action, double duration)
302 { /* FIXME: should inherit */
303 XBT_IN2("(%p,%g)", action, duration);
304 action->max_duration = duration;
309 static void action_set_priority(surf_action_t action, double priority)
311 XBT_IN2("(%p,%g)", action, priority);
312 action->priority = priority;
313 lmm_update_variable_weight(maxmin_system, ((surf_action_workstation_KCCFLN05_t) action)->variable, priority);
318 /**************************************/
319 /******* Resource Private **********/
320 /**************************************/
322 static int resource_used(void *resource_id)
324 /* We can freely cast as a link_KCCFLN05_t because it has
325 the same prefix as cpu_KCCFLN05_t */
326 if (((cpu_KCCFLN05_t) resource_id)->type ==
327 SURF_WORKSTATION_RESOURCE_CPU)
328 return (lmm_constraint_used
329 (maxmin_system, ((cpu_KCCFLN05_t) resource_id)->constraint)
330 || ((((cpu_KCCFLN05_t) resource_id)->bus) ?
331 lmm_constraint_used(maxmin_system,
332 ((cpu_KCCFLN05_t) resource_id)->
335 return lmm_constraint_used(maxmin_system,
336 ((link_KCCFLN05_t) resource_id)->
341 static double share_resources(double now)
343 s_surf_action_workstation_KCCFLN05_t s_action;
344 surf_action_workstation_KCCFLN05_t action = NULL;
346 xbt_swag_t running_actions =
347 surf_workstation_model->common_public->states.running_action_set;
348 double min = generic_maxmin_share_resources(running_actions,
349 xbt_swag_offset(s_action,
354 xbt_swag_foreach(action, running_actions) {
355 if (action->latency > 0) {
357 min = action->latency;
358 DEBUG3("Updating min (value) with %p (start %f): %f", action,
359 action->generic_action.start, min);
360 } else if (action->latency < min) {
361 min = action->latency;
362 DEBUG3("Updating min (latency) with %p (start %f): %f", action,
363 action->generic_action.start, min);
368 DEBUG1("min value : %f", min);
373 static void update_actions_state(double now, double delta)
376 surf_action_workstation_KCCFLN05_t action = NULL;
377 surf_action_workstation_KCCFLN05_t next_action = NULL;
378 xbt_swag_t running_actions =
379 surf_workstation_model->common_public->states.running_action_set;
381 xbt_swag_foreach_safe(action, next_action, running_actions) {
383 if (action->latency > 0) {
384 if (action->latency > deltap) {
385 double_update(&(action->latency), deltap);
388 double_update(&(deltap), action->latency);
389 action->latency = 0.0;
391 if ((action->latency == 0.0) && (action->suspended == 0)) {
392 if ((action)->lat_current == 0.0)
393 lmm_update_variable_weight(maxmin_system, action->variable, 1.0);
395 lmm_update_variable_weight(maxmin_system, action->variable,
396 action->lat_current);
399 DEBUG3("Action (%p) : remains (%g) updated by %g.",
400 action, action->generic_action.remains,
401 lmm_variable_getvalue(action->variable) * deltap);
402 double_update(&(action->generic_action.remains),
403 lmm_variable_getvalue(action->variable) * deltap);
405 if (action->generic_action.max_duration != NO_MAX_DURATION)
406 double_update(&(action->generic_action.max_duration), delta);
408 if ((action->generic_action.remains <= 0) &&
409 (lmm_get_variable_weight(action->variable) > 0)) {
410 action->generic_action.finish = surf_get_clock();
411 surf_action_change_state((surf_action_t) action, SURF_ACTION_DONE);
412 } else if ((action->generic_action.max_duration != NO_MAX_DURATION) &&
413 (action->generic_action.max_duration <= 0)) {
414 action->generic_action.finish = surf_get_clock();
415 surf_action_change_state((surf_action_t) action, SURF_ACTION_DONE);
417 /* Need to check that none of the resource has failed */
418 lmm_constraint_t cnst = NULL;
420 void *constraint_id = NULL;
423 lmm_get_cnst_from_var(maxmin_system, action->variable,
425 constraint_id = lmm_constraint_id(cnst);
427 /* if(((link_KCCFLN05_t)constraint_id)->type== */
428 /* SURF_WORKSTATION_RESOURCE_LINK) { */
429 /* DEBUG2("Checking for link %s (%p)", */
430 /* ((link_KCCFLN05_t)constraint_id)->name, */
431 /* ((link_KCCFLN05_t)constraint_id)); */
433 /* if(((cpu_KCCFLN05_t)constraint_id)->type== */
434 /* SURF_WORKSTATION_RESOURCE_CPU) { */
435 /* DEBUG3("Checking for cpu %s (%p) : %s", */
436 /* ((cpu_KCCFLN05_t)constraint_id)->name, */
437 /* ((cpu_KCCFLN05_t)constraint_id), */
438 /* ((cpu_KCCFLN05_t)constraint_id)->state_current==SURF_CPU_OFF?"Off":"On"); */
441 if (((((link_KCCFLN05_t) constraint_id)->type ==
442 SURF_WORKSTATION_RESOURCE_LINK) &&
443 (((link_KCCFLN05_t) constraint_id)->state_current ==
445 ((((cpu_KCCFLN05_t) constraint_id)->type ==
446 SURF_WORKSTATION_RESOURCE_CPU) &&
447 (((cpu_KCCFLN05_t) constraint_id)->state_current ==
449 DEBUG1("Action (%p) Failed!!", action);
450 action->generic_action.finish = surf_get_clock();
451 surf_action_change_state((surf_action_t) action,
461 static void update_resource_state(void *id,
462 tmgr_trace_event_t event_type,
465 cpu_KCCFLN05_t cpu = id;
466 link_KCCFLN05_t nw_link = id;
468 if (nw_link->type == SURF_WORKSTATION_RESOURCE_LINK) {
469 DEBUG2("Updating link %s (%p)", nw_link->name, nw_link);
470 if (event_type == nw_link->bw_event) {
471 nw_link->bw_current = value;
472 lmm_update_constraint_bound(maxmin_system, nw_link->constraint,
473 nw_link->bw_current);
474 } else if (event_type == nw_link->lat_event) {
475 double delta = value - nw_link->lat_current;
476 lmm_variable_t var = NULL;
477 surf_action_workstation_KCCFLN05_t action = NULL;
479 nw_link->lat_current = value;
480 while (lmm_get_var_from_cnst
481 (maxmin_system, nw_link->constraint, &var)) {
482 action = lmm_variable_id(var);
483 action->lat_current += delta;
484 if (action->rate < 0)
485 lmm_update_variable_bound(maxmin_system, action->variable,
486 SG_TCP_CTE_GAMMA / (2.0 *
490 lmm_update_variable_bound(maxmin_system, action->variable,
492 SG_TCP_CTE_GAMMA / (2.0 *
495 if (action->suspended == 0)
496 lmm_update_variable_weight(maxmin_system, action->variable,
497 action->lat_current);
498 lmm_update_variable_latency(maxmin_system, action->variable,
503 } else if (event_type == nw_link->state_event) {
505 nw_link->state_current = SURF_LINK_ON;
507 nw_link->state_current = SURF_LINK_OFF;
509 CRITICAL0("Unknown event ! \n");
513 } else if (cpu->type == SURF_WORKSTATION_RESOURCE_CPU) {
514 DEBUG3("Updating cpu %s (%p) with value %g", cpu->name, cpu, value);
515 if (event_type == cpu->power_event) {
516 cpu->power_current = value;
517 __update_cpu_usage(cpu);
518 } else if (event_type == cpu->state_event) {
520 cpu->state_current = SURF_CPU_ON;
522 cpu->state_current = SURF_CPU_OFF;
524 CRITICAL0("Unknown event ! \n");
534 static void finalize(void)
538 xbt_dict_free(&link_set);
539 xbt_dict_free(&workstation_set);
540 xbt_dict_free(&router_set);
541 if (parallel_task_link_set != NULL) {
542 xbt_dict_free(¶llel_task_link_set);
544 xbt_swag_free(surf_workstation_model->common_public->states.
546 xbt_swag_free(surf_workstation_model->common_public->states.
548 xbt_swag_free(surf_workstation_model->common_public->states.
550 xbt_swag_free(surf_workstation_model->common_public->states.
553 free(surf_workstation_model->common_public);
554 free(surf_workstation_model->common_private);
555 free(surf_workstation_model->extension_public);
557 free(surf_workstation_model);
558 surf_workstation_model = NULL;
560 for (i = 0; i < nb_workstation; i++)
561 for (j = 0; j < nb_workstation; j++)
562 free(ROUTE(i, j).links);
564 routing_table = NULL;
568 lmm_system_free(maxmin_system);
569 maxmin_system = NULL;
573 /**************************************/
574 /******* Resource Private **********/
575 /**************************************/
577 static surf_action_t execute(void *cpu, double size)
579 surf_action_workstation_KCCFLN05_t action = NULL;
580 cpu_KCCFLN05_t CPU = cpu;
582 XBT_IN2("(%s,%g)", CPU->name, size);
583 action = xbt_new0(s_surf_action_workstation_KCCFLN05_t, 1);
585 action->generic_action.using = 1;
586 action->generic_action.cost = size;
587 action->generic_action.remains = size;
588 action->generic_action.priority = 1.0;
589 action->generic_action.max_duration = NO_MAX_DURATION;
590 action->generic_action.start = surf_get_clock();
591 action->generic_action.finish = -1.0;
592 action->generic_action.model_type =
593 (surf_model_t) surf_workstation_model;
594 action->suspended = 0;
596 if (CPU->state_current == SURF_CPU_ON)
597 action->generic_action.state_set =
598 surf_workstation_model->common_public->states.
601 action->generic_action.state_set =
602 surf_workstation_model->common_public->states.failed_action_set;
603 xbt_swag_insert(action, action->generic_action.state_set);
605 action->variable = lmm_variable_new(maxmin_system, action,
606 action->generic_action.priority,
608 lmm_expand(maxmin_system, CPU->constraint, action->variable, 1.0);
610 return (surf_action_t) action;
613 static surf_action_t action_sleep(void *cpu, double duration)
615 surf_action_workstation_KCCFLN05_t action = NULL;
617 XBT_IN2("(%s,%g)", ((cpu_KCCFLN05_t) cpu)->name, duration);
619 action = (surf_action_workstation_KCCFLN05_t) execute(cpu, 1.0);
620 action->generic_action.max_duration = duration;
621 action->suspended = 2;
622 lmm_update_variable_weight(maxmin_system, action->variable, 0.0);
625 return (surf_action_t) action;
628 static e_surf_cpu_state_t resource_get_state(void *cpu)
630 return ((cpu_KCCFLN05_t) cpu)->state_current;
633 static double get_speed(void *cpu, double load)
635 return load * (((cpu_KCCFLN05_t) cpu)->power_scale);
638 static double get_available_speed(void *cpu)
640 return ((cpu_KCCFLN05_t) cpu)->power_current;
643 static surf_action_t communicate(void *src, void *dst, double size,
646 surf_action_workstation_KCCFLN05_t action = NULL;
647 cpu_KCCFLN05_t card_src = src;
648 cpu_KCCFLN05_t card_dst = dst;
649 route_KCCFLN05_t route = &(ROUTE(card_src->id, card_dst->id));
650 int route_size = route->size;
653 XBT_IN4("(%s,%s,%g,%g)", card_src->name, card_dst->name, size, rate);
654 xbt_assert2(route_size,
655 "You're trying to send data from %s to %s but there is no connexion between these two cards.",
656 card_src->name, card_dst->name);
658 action = xbt_new0(s_surf_action_workstation_KCCFLN05_t, 1);
660 action->generic_action.using = 1;
661 action->generic_action.cost = size;
662 action->generic_action.remains = size;
663 action->generic_action.max_duration = NO_MAX_DURATION;
664 action->generic_action.start = surf_get_clock();
665 action->generic_action.finish = -1.0;
668 action->generic_action.model_type =
669 (surf_model_t) surf_workstation_model;
670 action->suspended = 0; /* Should be useless because of the
671 calloc but it seems to help valgrind... */
672 action->generic_action.state_set =
673 surf_workstation_model->common_public->states.running_action_set;
675 xbt_dynar_push(card_src->outgoing_communications, &action);
676 xbt_dynar_push(card_dst->incomming_communications, &action);
678 xbt_swag_insert(action, action->generic_action.state_set);
681 action->latency = 0.0;
682 for (i = 0; i < route_size; i++)
683 action->latency += route->links[i]->lat_current;
684 action->lat_current = action->latency;
686 if (action->latency > 0)
687 action->variable = lmm_variable_new(maxmin_system, action, 0.0, -1.0, route_size + 4); /* +1 for the src bus
690 +1 for the dst cpu */
692 action->variable = lmm_variable_new(maxmin_system, action, 1.0, -1.0,
695 if (action->rate < 0) {
696 if (action->lat_current > 0)
697 lmm_update_variable_bound(maxmin_system, action->variable,
698 SG_TCP_CTE_GAMMA / (2.0 *
699 action->lat_current));
701 lmm_update_variable_bound(maxmin_system, action->variable, -1.0);
703 if (action->lat_current > 0)
704 lmm_update_variable_bound(maxmin_system, action->variable,
706 SG_TCP_CTE_GAMMA / (2.0 *
710 lmm_update_variable_bound(maxmin_system, action->variable,
714 lmm_update_variable_latency(maxmin_system, action->variable,
715 action->latency); /* Should be useless */
717 for (i = 0; i < route_size; i++)
718 lmm_expand(maxmin_system, route->links[i]->constraint,
719 action->variable, 1.0);
721 lmm_expand(maxmin_system, card_src->bus, action->variable, 1.0);
723 lmm_expand(maxmin_system, card_dst->bus, action->variable, 1.0);
724 lmm_expand(maxmin_system, card_src->constraint, action->variable, 0.0);
725 lmm_expand(maxmin_system, card_dst->constraint, action->variable, 0.0);
728 return (surf_action_t) action;
731 static surf_action_t execute_parallel_task(int workstation_nb,
732 void **workstation_list,
733 double *computation_amount,
734 double *communication_amount,
735 double amount, double rate)
737 surf_action_workstation_KCCFLN05_t action = NULL;
742 if (parallel_task_link_set == NULL) {
743 parallel_task_link_set = xbt_dict_new();
746 /* Compute the number of affected resources... */
747 for (i = 0; i < workstation_nb; i++) {
748 for (j = 0; j < workstation_nb; j++) {
749 cpu_KCCFLN05_t card_src = workstation_list[i];
750 cpu_KCCFLN05_t card_dst = workstation_list[j];
751 int route_size = ROUTE(card_src->id, card_dst->id).size;
752 link_KCCFLN05_t *route =
753 ROUTE(card_src->id, card_dst->id).links;
755 if (communication_amount[i * workstation_nb + j] > 0)
756 for (k = 0; k < route_size; k++) {
757 xbt_dict_set(parallel_task_link_set, route[k]->name,
762 nb_link = xbt_dict_length(parallel_task_link_set);
763 xbt_dict_reset(parallel_task_link_set);
766 for (i = 0; i < workstation_nb; i++)
767 if (computation_amount[i] > 0)
770 action = xbt_new0(s_surf_action_workstation_KCCFLN05_t, 1);
771 DEBUG3("Creating a parallel task (%p) with %d cpus and %d links.",
772 action, nb_host, nb_link);
773 action->generic_action.using = 1;
774 action->generic_action.cost = amount;
775 action->generic_action.remains = amount;
776 action->generic_action.max_duration = NO_MAX_DURATION;
777 action->generic_action.start = surf_get_clock();
778 action->generic_action.finish = -1.0;
779 action->generic_action.model_type =
780 (surf_model_t) surf_workstation_model;
781 action->suspended = 0; /* Should be useless because of the
782 calloc but it seems to help valgrind... */
783 action->generic_action.state_set =
784 surf_workstation_model->common_public->states.running_action_set;
786 xbt_swag_insert(action, action->generic_action.state_set);
789 if (action->rate > 0)
790 action->variable = lmm_variable_new(maxmin_system, action, 1.0, -1.0,
794 lmm_variable_new(maxmin_system, action, 1.0, action->rate,
797 for (i = 0; i < workstation_nb; i++)
798 if (computation_amount[i] > 0)
799 lmm_expand(maxmin_system,
800 ((cpu_KCCFLN05_t) workstation_list[i])->constraint,
801 action->variable, computation_amount[i]);
803 for (i = 0; i < workstation_nb; i++) {
804 for (j = 0; j < workstation_nb; j++) {
805 cpu_KCCFLN05_t card_src = workstation_list[i];
806 cpu_KCCFLN05_t card_dst = workstation_list[j];
807 int route_size = ROUTE(card_src->id, card_dst->id).size;
808 link_KCCFLN05_t *route =
809 ROUTE(card_src->id, card_dst->id).links;
811 for (k = 0; k < route_size; k++) {
812 if (communication_amount[i * workstation_nb + j] > 0) {
813 lmm_expand_add(maxmin_system, route[k]->constraint,
815 communication_amount[i * workstation_nb + j]);
821 if (nb_link + nb_host == 0) {
822 action->generic_action.cost = 1.0;
823 action->generic_action.remains = 0.0;
826 return (surf_action_t) action;
829 /* returns an array of link_KCCFLN05_t */
830 static const void **get_route(void *src, void *dst)
832 cpu_KCCFLN05_t card_src = src;
833 cpu_KCCFLN05_t card_dst = dst;
834 route_KCCFLN05_t route = &(ROUTE(card_src->id, card_dst->id));
836 return (const void **) route->links;
839 static int get_route_size(void *src, void *dst)
841 cpu_KCCFLN05_t card_src = src;
842 cpu_KCCFLN05_t card_dst = dst;
843 route_KCCFLN05_t route = &(ROUTE(card_src->id, card_dst->id));
847 static const char *get_link_name(const void *link)
849 return ((link_KCCFLN05_t) link)->name;
852 static double get_link_bandwidth(const void *link)
854 return ((link_KCCFLN05_t) link)->bw_current;
857 static double get_link_latency(const void *link)
859 return ((link_KCCFLN05_t) link)->lat_current;
862 /**************************************/
863 /*** Resource Creation & Destruction **/
864 /**************************************/
867 static void router_free(void *router)
869 free(((router_KCCFLN05_t) router)->name);
872 static void router_new(const char *name)
874 static unsigned int nb_routers = 0;
875 router_KCCFLN05_t router;
877 INFO1("Creating a router %s", name);
879 router = xbt_new0(s_router_KCCFLN05_t, 1);
881 router->name = xbt_strdup(name);
882 router->id = nb_routers++;
883 xbt_dict_set(router_set, name, router, router_free);
886 static void parse_routers(void)
888 //add a dumb router just to be GTNETS compatible
889 router_new(A_surfxml_router_id);
892 static void cpu_free(void *cpu)
894 free(((cpu_KCCFLN05_t) cpu)->name);
895 xbt_dynar_free(&(((cpu_KCCFLN05_t) cpu)->incomming_communications));
896 xbt_dynar_free(&(((cpu_KCCFLN05_t) cpu)->outgoing_communications));
900 static cpu_KCCFLN05_t cpu_new(const char *name, double power_scale,
901 double power_initial,
902 tmgr_trace_t power_trace,
903 e_surf_cpu_state_t state_initial,
904 tmgr_trace_t state_trace,
905 double interference_send,
906 double interference_recv,
907 double interference_send_recv,
908 double max_outgoing_rate,
909 xbt_dict_t cpu_properties_k)
911 cpu_KCCFLN05_t cpu = xbt_new0(s_cpu_KCCFLN05_t, 1);
913 xbt_assert1(! xbt_dict_get_or_null(workstation_set, name),
914 "Host '%s' declared several times in the platform file.",name);
916 CDEBUG8(surf_parse, "cpu_new(%s,power_scale=%.2f,power_initial=%.2f,state_init=%d,isend=%.2f,irecv=%.2f,isendrev=%.2f) -> %p",
917 name,power_scale,power_initial,state_initial,interference_send,interference_recv,interference_send_recv,cpu);
919 cpu->model = (surf_model_t) surf_workstation_model;
920 cpu->type = SURF_WORKSTATION_RESOURCE_CPU;
921 cpu->name = xbt_strdup(name);
922 cpu->id = nb_workstation++;
924 cpu->power_scale = power_scale;
925 xbt_assert0(cpu->power_scale > 0, "Power has to be >0");
927 cpu->power_current = power_initial;
930 tmgr_history_add_trace(history, power_trace, 0.0, 0, cpu);
932 cpu->state_current = state_initial;
935 tmgr_history_add_trace(history, state_trace, 0.0, 0, cpu);
937 cpu->interference_send = interference_send;
938 cpu->interference_recv = interference_recv;
939 cpu->interference_send_recv = interference_send_recv;
942 lmm_constraint_new(maxmin_system, cpu,
943 cpu->power_current * cpu->power_scale);
944 if (max_outgoing_rate > 0)
945 cpu->bus = lmm_constraint_new(maxmin_system, cpu, max_outgoing_rate);
947 cpu->incomming_communications =
948 xbt_dynar_new(sizeof(surf_action_workstation_KCCFLN05_t), NULL);
949 cpu->outgoing_communications =
950 xbt_dynar_new(sizeof(surf_action_workstation_KCCFLN05_t), NULL);
952 /*add the property set*/
953 cpu->properties = current_property_set;
955 xbt_dict_set(workstation_set, name, cpu, cpu_free);
960 static void create_routing_table(void)
962 routing_table = xbt_new0(s_route_KCCFLN05_t, nb_workstation * nb_workstation);
965 static void parse_cpu_init(void)
967 double power_scale = 0.0;
968 double power_initial = 0.0;
969 tmgr_trace_t power_trace = NULL;
970 e_surf_cpu_state_t state_initial = SURF_CPU_OFF;
971 tmgr_trace_t state_trace = NULL;
972 double interference_send = 0.0;
973 double interference_recv = 0.0;
974 double interference_send_recv = 0.0;
975 double max_outgoing_rate = -1.0;
977 power_scale = get_cpu_power(A_surfxml_host_power);
978 surf_parse_get_double(&power_initial, A_surfxml_host_availability);
979 surf_parse_get_trace(&power_trace, A_surfxml_host_availability_file);
981 xbt_assert0((A_surfxml_host_state == A_surfxml_host_state_ON) ||
982 (A_surfxml_host_state == A_surfxml_host_state_OFF),
984 if (A_surfxml_host_state == A_surfxml_host_state_ON)
985 state_initial = SURF_CPU_ON;
986 if (A_surfxml_host_state == A_surfxml_host_state_OFF)
987 state_initial = SURF_CPU_OFF;
988 surf_parse_get_trace(&state_trace, A_surfxml_host_state_file);
990 surf_parse_get_double(&interference_send,
991 A_surfxml_host_interference_send);
992 surf_parse_get_double(&interference_recv,
993 A_surfxml_host_interference_recv);
994 surf_parse_get_double(&interference_send_recv,
995 A_surfxml_host_interference_send_recv);
996 surf_parse_get_double(&max_outgoing_rate,
997 A_surfxml_host_max_outgoing_rate);
998 current_property_set = xbt_dict_new();
1000 cpu_new(A_surfxml_host_id, power_scale, power_initial, power_trace,
1001 state_initial, state_trace, interference_send, interference_recv,
1002 interference_send_recv, max_outgoing_rate,current_property_set);
1005 static void link_free(void *nw_link)
1007 free(((link_KCCFLN05_t) nw_link)->name);
1011 static link_KCCFLN05_t link_new(char *name,
1013 tmgr_trace_t bw_trace,
1015 tmgr_trace_t lat_trace,
1018 tmgr_trace_t state_trace,
1019 e_surf_link_sharing_policy_t
1020 policy, xbt_dict_t properties_args)
1022 link_KCCFLN05_t nw_link = xbt_new0(s_link_KCCFLN05_t, 1);
1025 nw_link->model = (surf_model_t) surf_workstation_model;
1026 nw_link->type = SURF_WORKSTATION_RESOURCE_LINK;
1027 nw_link->name = name;
1028 nw_link->bw_current = bw_initial;
1031 tmgr_history_add_trace(history, bw_trace, 0.0, 0, nw_link);
1032 nw_link->state_current = state_initial;
1033 nw_link->lat_current = lat_initial;
1035 nw_link->lat_event =
1036 tmgr_history_add_trace(history, lat_trace, 0.0, 0, nw_link);
1038 nw_link->state_event =
1039 tmgr_history_add_trace(history, state_trace, 0.0, 0, nw_link);
1041 nw_link->constraint =
1042 lmm_constraint_new(maxmin_system, nw_link, nw_link->bw_current);
1044 if (policy == SURF_LINK_FATPIPE)
1045 lmm_constraint_shared(nw_link->constraint);
1047 /*add the property set*/
1048 nw_link->properties = properties_args;
1050 xbt_dict_set(link_set, name, nw_link, link_free);
1055 static void parse_link_init(void)
1059 tmgr_trace_t bw_trace;
1061 tmgr_trace_t lat_trace;
1062 e_surf_link_state_t state_initial_link = SURF_LINK_ON;
1063 e_surf_link_sharing_policy_t policy_initial_link = SURF_LINK_SHARED;
1064 tmgr_trace_t state_trace;
1066 name_link = xbt_strdup(A_surfxml_link_id);
1067 surf_parse_get_double(&bw_initial, A_surfxml_link_bandwidth);
1068 surf_parse_get_trace(&bw_trace, A_surfxml_link_bandwidth_file);
1069 surf_parse_get_double(&lat_initial, A_surfxml_link_latency);
1070 surf_parse_get_trace(&lat_trace, A_surfxml_link_latency_file);
1072 xbt_assert0((A_surfxml_link_state ==
1073 A_surfxml_link_state_ON)
1074 || (A_surfxml_link_state ==
1075 A_surfxml_link_state_OFF), "Invalid state");
1076 if (A_surfxml_link_state == A_surfxml_link_state_ON)
1077 state_initial_link = SURF_LINK_ON;
1078 else if (A_surfxml_link_state ==
1079 A_surfxml_link_state_OFF)
1080 state_initial_link = SURF_LINK_OFF;
1082 if (A_surfxml_link_sharing_policy ==
1083 A_surfxml_link_sharing_policy_SHARED)
1084 policy_initial_link = SURF_LINK_SHARED;
1085 else if (A_surfxml_link_sharing_policy ==
1086 A_surfxml_link_sharing_policy_FATPIPE)
1087 policy_initial_link = SURF_LINK_FATPIPE;
1089 surf_parse_get_trace(&state_trace, A_surfxml_link_state_file);
1091 current_property_set = xbt_dict_new();
1092 link_new(name_link, bw_initial, bw_trace,
1093 lat_initial, lat_trace, state_initial_link, state_trace,
1094 policy_initial_link,/*add properties*/current_property_set);
1097 static void route_new(int src_id, int dst_id,
1098 link_KCCFLN05_t * link_list, int nb_link,
1099 double impact_on_src, double impact_on_dst,
1100 double impact_on_src_with_other_recv,
1101 double impact_on_dst_with_other_send)
1103 route_KCCFLN05_t route = &(ROUTE(src_id, dst_id));
1105 route->size = nb_link;
1106 route->links = link_list = xbt_realloc(link_list, sizeof(link_KCCFLN05_t) * nb_link);
1107 route->impact_on_src = impact_on_src;
1108 route->impact_on_dst = impact_on_dst;
1109 route->impact_on_src_with_other_recv = impact_on_src_with_other_recv;
1110 route->impact_on_dst_with_other_send = impact_on_dst_with_other_send;
1113 static int src_id = -1;
1114 static int dst_id = -1;
1115 static double impact_on_src;
1116 static double impact_on_dst;
1117 static double impact_on_src_with_other_recv;
1118 static double impact_on_dst_with_other_send;
1120 static void parse_route_set_endpoints(void)
1122 cpu_KCCFLN05_t cpu_tmp = NULL;
1124 cpu_tmp = (cpu_KCCFLN05_t) name_service(A_surfxml_route_src);
1125 if (cpu_tmp != NULL) {
1126 src_id = cpu_tmp->id;
1128 xbt_assert1(xbt_dict_get_or_null(router_set, A_surfxml_route_src),
1129 "Invalid name '%s': neither a cpu nor a router!",
1130 A_surfxml_route_src);
1135 cpu_tmp = (cpu_KCCFLN05_t) name_service(A_surfxml_route_dst);
1136 if (cpu_tmp != NULL) {
1137 dst_id = cpu_tmp->id;
1139 xbt_assert1(xbt_dict_get_or_null(router_set, A_surfxml_route_dst),
1140 "Invalid name '%s': neither a cpu nor a router!",
1141 A_surfxml_route_dst);
1146 surf_parse_get_double(&impact_on_src, A_surfxml_route_impact_on_src);
1147 surf_parse_get_double(&impact_on_dst, A_surfxml_route_impact_on_dst);
1148 surf_parse_get_double(&impact_on_src_with_other_recv,
1149 A_surfxml_route_impact_on_src_with_other_recv);
1150 surf_parse_get_double(&impact_on_dst_with_other_send,
1151 A_surfxml_route_impact_on_dst_with_other_send);
1154 route_action = A_surfxml_route_action;
1155 route_link_list = xbt_dynar_new(sizeof(char *), &free_string);
1159 static void parse_route_set_route(void)
1162 if (src_id != -1 && dst_id != -1) {
1163 name = bprintf("%x#%x",src_id, dst_id);
1165 manage_route(route_table, name, route_action, 0);
1170 static void add_loopback(void)
1174 /* Adding loopback if needed */
1175 for (i = 0; i < nb_workstation; i++) {
1176 if (!ROUTE(i, i).size) {
1178 loopback = link_new(xbt_strdup("__MSG_loopback__"),
1179 498000000, NULL, 0.000015, NULL,
1181 SURF_LINK_FATPIPE, NULL);
1182 ROUTE(i, i).size = 1;
1183 ROUTE(i, i).links = xbt_new0(link_KCCFLN05_t, 1);
1184 ROUTE(i, i).links[0] = loopback;
1189 static void add_route(void)
1193 unsigned int cpt = 0;
1194 int link_list_capacity = 0;
1195 link_KCCFLN05_t *link_list = NULL;
1196 xbt_dict_cursor_t cursor = NULL;
1197 char *key,*data, *end;
1198 const char *sep = "#";
1199 xbt_dynar_t links, keys;
1201 if (routing_table == NULL) create_routing_table();
1203 xbt_dict_foreach(route_table, cursor, key, data) {
1205 links = (xbt_dynar_t)data;
1206 keys = xbt_str_split_str(key, sep);
1208 link_list_capacity = xbt_dynar_length(links);
1209 link_list = xbt_new(link_KCCFLN05_t, link_list_capacity);
1211 src_id = strtol(xbt_dynar_get_as(keys, 0, char*), &end, 16);
1212 dst_id = strtol(xbt_dynar_get_as(keys, 1, char*), &end, 16);
1213 /*ATTRIBUTES NOT USED ANYMORE. WILL BE REMOVED FROM MODEL.*/
1214 impact_on_src = 0;//atof(xbt_dynar_get_as(keys, 2, char*));
1215 impact_on_dst = 0; //atof(xbt_dynar_get_as(keys, 3, char*));
1216 impact_on_src_with_other_recv = 0;//atof(xbt_dynar_get_as(keys, 4, char*));
1217 impact_on_dst_with_other_send = 0;//atof(xbt_dynar_get_as(keys, 5, char*));
1220 INFO2("%d - %d", src_id, dst_id);
1221 xbt_dynar_foreach (links, cpt, link) {
1224 link_list[nb_link++] = xbt_dict_get(link_set, link);
1227 RETHROW3("Link %s not found between", link);
1230 route_new(src_id, dst_id, link_list, nb_link,impact_on_src,
1231 impact_on_dst, impact_on_src_with_other_recv,
1232 impact_on_dst_with_other_send);
1235 xbt_dict_free(&route_table);
1239 static void add_traces(void)
1241 xbt_dynar_t trace_connect = NULL;
1243 int connect_element, connect_kind;
1244 char *value, *trace_id, *connector_id;
1245 link_KCCFLN05_t link;
1246 cpu_KCCFLN05_t host = NULL;
1249 if (!traces_connect_list) return;
1251 /*for all trace connects parse them and update traces for hosts or links */
1252 xbt_dynar_foreach (traces_connect_list, cpt, value) {
1253 trace_connect = xbt_str_split_str(value, "#");
1254 trace_id = xbt_dynar_get_as(trace_connect, 0, char*);
1255 connect_element = atoi(xbt_dynar_get_as(trace_connect, 1, char*));
1256 connect_kind = atoi(xbt_dynar_get_as(trace_connect, 2, char*));
1257 connector_id = xbt_dynar_get_as(trace_connect, 3, char*);
1259 xbt_assert1((trace = xbt_dict_get_or_null(traces_set_list, trace_id)), "Trace %s undefined", trace_id);
1261 if (connect_element == A_surfxml_trace_c_connect_element_HOST) {
1262 xbt_assert1((host = xbt_dict_get_or_null(workstation_set, connector_id)), "Host %s undefined", connector_id);
1263 switch (connect_kind) {
1264 case A_surfxml_trace_c_connect_kind_AVAILABILITY: host->state_event = tmgr_history_add_trace(history, trace, 0.0, 0, host); break;
1265 case A_surfxml_trace_c_connect_kind_POWER: host->power_event = tmgr_history_add_trace(history, trace, 0.0, 0, host); break;
1269 xbt_assert1((link = xbt_dict_get_or_null(link_set, connector_id)), "Link %s undefined", connector_id);
1270 switch (connect_kind) {
1271 case A_surfxml_trace_c_connect_kind_AVAILABILITY: link->state_event = tmgr_history_add_trace(history, trace, 0.0, 0, link); break;
1272 case A_surfxml_trace_c_connect_kind_BANDWIDTH: link->bw_event = tmgr_history_add_trace(history, trace, 0.0, 0, link); break;
1273 case A_surfxml_trace_c_connect_kind_LATENCY: link->lat_event = tmgr_history_add_trace(history, trace, 0.0, 0, link); break;
1278 xbt_dynar_free(&trace_connect);
1279 xbt_dynar_free(&traces_connect_list);
1280 xbt_dict_free(&traces_set_list);
1283 static void define_callbacks(const char *file)
1285 CDEBUG0(surf_parse, "Use the KCCFKN05 model");
1287 /* Adding callback functions */
1288 surf_parse_reset_parser();
1289 surfxml_add_callback(STag_surfxml_host_cb_list, &parse_cpu_init);
1290 surfxml_add_callback(STag_surfxml_prop_cb_list, &parse_properties);
1291 surfxml_add_callback(STag_surfxml_router_cb_list, &parse_routers);
1292 surfxml_add_callback(STag_surfxml_link_cb_list, &parse_link_init);
1293 surfxml_add_callback(STag_surfxml_route_cb_list, &parse_route_set_endpoints);
1294 surfxml_add_callback(ETag_surfxml_link_c_ctn_cb_list, &parse_route_elem);
1295 surfxml_add_callback(ETag_surfxml_route_cb_list, &parse_route_set_route);
1296 surfxml_add_callback(STag_surfxml_platform_cb_list, &init_data);
1297 surfxml_add_callback(ETag_surfxml_platform_cb_list, &add_route);
1298 surfxml_add_callback(ETag_surfxml_platform_cb_list, &add_loopback);
1299 surfxml_add_callback(ETag_surfxml_platform_cb_list, &add_traces);
1300 surfxml_add_callback(STag_surfxml_set_cb_list, &parse_sets);
1301 surfxml_add_callback(STag_surfxml_route_c_multi_cb_list, &parse_route_multi_set_endpoints);
1302 surfxml_add_callback(ETag_surfxml_route_c_multi_cb_list, &parse_route_multi_set_route);
1303 surfxml_add_callback(STag_surfxml_foreach_cb_list, &parse_foreach);
1304 surfxml_add_callback(STag_surfxml_cluster_cb_list, &parse_cluster);
1305 surfxml_add_callback(STag_surfxml_trace_cb_list, &parse_trace_init);
1306 surfxml_add_callback(ETag_surfxml_trace_cb_list, &parse_trace_finalize);
1307 surfxml_add_callback(STag_surfxml_trace_c_connect_cb_list, &parse_trace_c_connect);
1308 surfxml_add_callback(STag_surfxml_random_cb_list, &init_randomness);
1309 surfxml_add_callback(ETag_surfxml_random_cb_list, &add_randomness);
1312 /**************************************/
1313 /********* Module creation ***********/
1314 /**************************************/
1316 static void model_init_internal(void)
1318 s_surf_action_t action;
1320 surf_workstation_model = xbt_new0(s_surf_workstation_model_t, 1);
1322 surf_workstation_model->common_private =
1323 xbt_new0(s_surf_model_private_t, 1);
1324 surf_workstation_model->common_public =
1325 xbt_new0(s_surf_model_public_t, 1);
1326 surf_workstation_model->extension_public =
1327 xbt_new0(s_surf_workstation_model_extension_public_t, 1);
1329 surf_workstation_model->common_public->states.ready_action_set =
1330 xbt_swag_new(xbt_swag_offset(action, state_hookup));
1331 surf_workstation_model->common_public->states.running_action_set =
1332 xbt_swag_new(xbt_swag_offset(action, state_hookup));
1333 surf_workstation_model->common_public->states.failed_action_set =
1334 xbt_swag_new(xbt_swag_offset(action, state_hookup));
1335 surf_workstation_model->common_public->states.done_action_set =
1336 xbt_swag_new(xbt_swag_offset(action, state_hookup));
1338 surf_workstation_model->common_public->name_service = name_service;
1339 surf_workstation_model->common_public->get_resource_name =
1341 surf_workstation_model->common_public->action_get_state =
1342 surf_action_get_state;
1343 surf_workstation_model->common_public->action_get_start_time =
1344 surf_action_get_start_time;
1345 surf_workstation_model->common_public->action_get_finish_time =
1346 surf_action_get_finish_time;
1347 surf_workstation_model->common_public->action_use = action_use;
1348 surf_workstation_model->common_public->action_free = action_free;
1349 surf_workstation_model->common_public->action_cancel = action_cancel;
1350 surf_workstation_model->common_public->action_recycle =
1352 surf_workstation_model->common_public->action_change_state =
1353 surf_action_change_state;
1354 surf_workstation_model->common_public->action_set_data =
1355 surf_action_set_data;
1356 surf_workstation_model->common_public->suspend = action_suspend;
1357 surf_workstation_model->common_public->resume = action_resume;
1358 surf_workstation_model->common_public->is_suspended =
1359 action_is_suspended;
1360 surf_workstation_model->common_public->set_max_duration =
1361 action_set_max_duration;
1362 surf_workstation_model->common_public->set_priority =
1363 action_set_priority;
1364 surf_workstation_model->common_public->name = "Workstation KCCFLN05";
1366 surf_workstation_model->common_private->resource_used = resource_used;
1367 surf_workstation_model->common_private->share_resources =
1369 surf_workstation_model->common_private->update_actions_state =
1370 update_actions_state;
1371 surf_workstation_model->common_private->update_resource_state =
1372 update_resource_state;
1373 surf_workstation_model->common_private->finalize = finalize;
1375 surf_workstation_model->extension_public->execute = execute;
1376 surf_workstation_model->extension_public->sleep = action_sleep;
1377 surf_workstation_model->extension_public->get_state =
1379 surf_workstation_model->extension_public->get_speed = get_speed;
1380 surf_workstation_model->extension_public->get_available_speed =
1381 get_available_speed;
1383 surf_workstation_model->common_public->get_properties = get_properties;
1385 surf_workstation_model->extension_public->communicate = communicate;
1386 surf_workstation_model->extension_public->execute_parallel_task =
1387 execute_parallel_task;
1388 surf_workstation_model->extension_public->get_route = get_route;
1389 surf_workstation_model->extension_public->get_route_size =
1391 surf_workstation_model->extension_public->get_link_name =
1393 surf_workstation_model->extension_public->get_link_bandwidth =
1395 surf_workstation_model->extension_public->get_link_latency =
1398 workstation_set = xbt_dict_new();
1399 router_set = xbt_dict_new();
1400 link_set = xbt_dict_new();
1402 maxmin_system = lmm_system_new();
1405 /**************************************/
1406 /*************** Generic **************/
1407 /**************************************/
1408 void surf_workstation_model_init_KCCFLN05(const char *filename)
1410 xbt_assert0(!surf_cpu_model, "CPU model type already defined");
1411 xbt_assert0(!surf_network_model,
1412 "network model type already defined");
1413 model_init_internal();
1414 define_callbacks(filename);
1416 xbt_dynar_push(model_list, &surf_workstation_model);