Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
SURF: Embeed every fields of common_public directly into s_surf_model_t
[simgrid.git] / testsuite / surf / maxmin_bench.c
1 /*      $Id$     */
2
3 /* A crash few tests for the maxmin library                                 */
4
5 /* Copyright (c) 2004 Arnaud Legrand. All rights reserved.                  */
6
7 /* This program is free software; you can redistribute it and/or modify it
8  * under the terms of the license (GNU LGPL) which comes with this package. */
9
10 #ifdef __BORLANDC__
11 #pragma hdrstop
12 #endif
13
14
15 #include <stdlib.h>
16 #include <stdio.h>
17 #include "surf/maxmin.h"
18 #include "xbt/xbt_os_time.h"
19 #include "xbt/sysdep.h"         /* time manipulation for benchmarking */
20
21 double date;
22
23 double float_random(double max);
24 double float_random(double max)
25 {
26   return ((max * rand()) / (RAND_MAX + 1.0));
27 }
28
29 int int_random(int max);
30 int int_random(int max)
31 {
32   return (int) (((max * 1.0) * rand()) / (RAND_MAX + 1.0));
33 }
34
35 void test(int nb_cnst, int nb_var, int nb_elem);
36 void test(int nb_cnst, int nb_var, int nb_elem)
37 {
38   lmm_system_t Sys = NULL;
39   lmm_constraint_t *cnst = xbt_new0(lmm_constraint_t, nb_cnst);
40   lmm_variable_t *var = xbt_new0(lmm_variable_t, nb_var);
41   int *used = xbt_new0(int, nb_cnst);
42   int i, j, k;
43
44   Sys = lmm_system_new();
45
46   for (i = 0; i < nb_cnst; i++) {
47     cnst[i] = lmm_constraint_new(Sys, NULL, float_random(10.0));
48   }
49
50   for (i = 0; i < nb_var; i++) {
51     var[i] = lmm_variable_new(Sys, NULL, 1.0, -1.0, nb_elem);
52     for (j = 0; j < nb_cnst; j++)
53       used[j] = 0;
54     for (j = 0; j < nb_elem; j++) {
55       k = int_random(nb_cnst);
56       if (used[k]) {
57         j--;
58         continue;
59       }
60       lmm_expand(Sys, cnst[k], var[i], float_random(1.0));
61       used[k] = 1;
62     }
63   }
64
65   printf("Starting to solve\n");
66   date = xbt_os_time() * 1000000;
67   lmm_solve(Sys);
68   date = xbt_os_time() * 1000000 - date;
69
70   lmm_system_free(Sys);
71   free(cnst);
72   free(var);
73   free(used);
74 }
75
76 #ifdef __BORLANDC__
77 #pragma argsused
78 #endif
79
80
81 int main(int argc, char **argv)
82 {
83   int nb_cnst = 2000;
84   int nb_var = 2000;
85   int nb_elem = 80;
86   date = xbt_os_time() * 1000000;
87   test(nb_cnst, nb_var, nb_elem);
88   printf("One shot execution time for a total of %d constraints, "
89          "%d variables with %d active constraint each : %g microsecondes \n",
90          nb_cnst, nb_var, nb_elem, date);
91   return 0;
92 }