Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Moving sdp tests in maxmin_usage (to have the same set of tests).
[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 "xbt/xbt_portability.h"
18 #include "surf/maxmin.h"
19 #include "xbt/xbt_portability.h"
20 #include "xbt/sysdep.h"         /* time manipulation for benchmarking */
21
22 double date;
23
24 double float_random(double max);
25 double float_random(double max)
26 {
27   return ((max * rand()) / (RAND_MAX + 1.0));
28 }
29
30 int int_random(int max);
31 int int_random(int max)
32 {
33   return (int) (((max * 1.0) * rand()) / (RAND_MAX + 1.0));
34 }
35
36 void test(int nb_cnst, int nb_var, int nb_elem);
37 void test(int nb_cnst, int nb_var, int nb_elem)
38 {
39   lmm_system_t Sys = NULL;
40   lmm_constraint_t *cnst = calloc(nb_cnst, sizeof(lmm_constraint_t));
41   lmm_variable_t *var = calloc(nb_var, sizeof(lmm_variable_t));
42   int *used = calloc(nb_cnst, sizeof(int));
43   int i, j, k;
44
45   Sys = lmm_system_new();
46
47   for (i = 0; i < nb_cnst; i++) {
48     cnst[i] = lmm_constraint_new(Sys, NULL, float_random(10.0));
49   }
50
51   for (i = 0; i < nb_var; i++) {
52     var[i] = lmm_variable_new(Sys, NULL, 1.0, -1.0, nb_elem);
53     for (j = 0; j < nb_cnst; j++)
54       used[j] = 0;
55     for (j = 0; j < nb_elem; j++) {
56       k = int_random(nb_cnst);
57       if (used[k]) {
58         j--;
59         continue;
60       }
61       lmm_expand(Sys, cnst[k], var[i], float_random(1.0));
62       used[k] = 1;
63     }
64   }
65
66   printf("Starting to solve\n");
67   date = xbt_os_time() * 1000000;
68   lmm_solve(Sys);
69   date = xbt_os_time() * 1000000 - date;
70
71   lmm_system_free(Sys);
72   free(cnst);
73   free(var);
74   free(used);
75 }
76
77 #ifdef __BORLANDC__
78 #pragma argsused
79 #endif
80
81
82 int main(int argc, char **argv)
83 {
84   int nb_cnst = 20000;
85   int nb_var = 20000;
86   int nb_elem = 80;
87   date = xbt_os_time() * 1000000;
88   test(nb_cnst, nb_var, nb_elem);
89   printf("One shot execution time for a total of %d constraints, "
90          "%d variables with %d active constraint each : %g microsecondes \n",
91          nb_cnst, nb_var, nb_elem, date);
92   return 0;
93 }