Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[mc] Fix compilation
[simgrid.git] / teshsuite / surf / maxmin_bench / maxmin_bench.c
1 /* A crash few tests for the maxmin library                                 */
2
3 /* Copyright (c) 2004-2015. The SimGrid Team.
4  * All rights reserved.                                                     */
5
6 /* This program is free software; you can redistribute it and/or modify it
7  * under the terms of the license (GNU LGPL) which comes with this package. */
8
9 #include "surf/maxmin.h"
10 #include "xbt/module.h"
11 #include "xbt/xbt_os_time.h"
12 #include "xbt/sysdep.h"         /* time manipulation for benchmarking */
13
14 #define MYRANDMAX 1000
15
16 #include <stdlib.h>
17 #include <stdio.h>
18
19 double date;
20 unsigned long seedx= 0;
21
22 static int myrand(void) {
23   seedx=seedx * 16807 % 2147483647;
24   return seedx%1000;
25 }
26
27 static double float_random(double max)
28 {
29   return ((max * myrand()) / (MYRANDMAX + 1.0));
30 }
31
32 static int int_random(int max)
33 {
34   return (int) (((max * 1.0) * myrand()) / (MYRANDMAX + 1.0));
35 }
36
37 static void test(int nb_cnst, int nb_var, int nb_elem, int pw_base_limit, int pw_max_limit, float rate_no_limit,
38                  int max_share, int mode)
39 {
40   lmm_system_t Sys = NULL;
41   lmm_constraint_t *cnst = xbt_new0(lmm_constraint_t, nb_cnst);
42   lmm_variable_t *var = xbt_new0(lmm_variable_t, nb_var);
43   int *used = xbt_new0(int, nb_cnst);
44   int i, j, k,l;
45   int concurrency_share;
46
47   Sys = lmm_system_new(1);
48
49   for (i = 0; i < nb_cnst; i++) {
50     cnst[i] = lmm_constraint_new(Sys, NULL, float_random(10.0));
51     if(rate_no_limit>float_random(1.0))
52       //Look at what happens when there is no concurrency limit 
53       l=-1;
54     else
55       //Badly logarithmically random concurrency limit in [2^pw_base_limit+1,2^pw_base_limit+2^pw_max_limit]
56       l=(1<<pw_base_limit)+(1<<int_random(pw_max_limit));
57
58     lmm_constraint_concurrency_limit_set(cnst[i],l );
59   }
60
61   for (i = 0; i < nb_var; i++) {
62     var[i] = lmm_variable_new(Sys, NULL, 1.0, -1.0, nb_elem);
63     //Have a few variables with a concurrency share of two (e.g. cross-traffic in some cases)
64     concurrency_share=1+int_random(max_share);
65     lmm_variable_concurrency_share_set(var[i],concurrency_share);
66
67     for (j = 0; j < nb_cnst; j++)
68       used[j] = 0;
69     for (j = 0; j < nb_elem; j++) {
70       k = int_random(nb_cnst);
71       if (used[k]>=concurrency_share) {
72         j--;
73         continue;
74       }
75       lmm_expand(Sys, cnst[k], var[i], float_random(1.5));
76       lmm_expand_add(Sys, cnst[k], var[i], float_random(1.5));
77       used[k]++;
78     }
79   }
80
81   printf("Starting to solve(%i)\n",myrand()%1000);
82   date = xbt_os_time() * 1000000;
83   lmm_solve(Sys);
84   date = xbt_os_time() * 1000000 - date;
85
86   if(mode==2){
87     printf("Max concurrency:\n");
88     l=0;
89     for (i = 0; i < nb_cnst; i++) {
90       j=lmm_constraint_concurrency_maximum_get(cnst[i]);
91       k=lmm_constraint_concurrency_limit_get(cnst[i]);
92       xbt_assert(k<0 || j<=k);
93       if(j>l)
94         l=j;
95       printf("(%i):%i/%i ",i,j,k);
96       lmm_constraint_concurrency_maximum_reset(cnst[i]);
97       xbt_assert(!lmm_constraint_concurrency_maximum_get(cnst[i]));
98       if(i%10==9)
99         printf("\n");
100     }
101     printf("\nTotal maximum concurrency is %i\n",l);
102
103     lmm_print(Sys);
104   }
105
106   for (i = 0; i < nb_var; i++)
107     lmm_variable_free(Sys, var[i]);
108   lmm_system_free(Sys);
109   free(cnst);
110   free(var);
111   free(used);
112 }
113
114 int TestClasses [][4]=
115   //Nbcnst Nbvar Baselimit Maxlimit 
116   {{  10  ,10    ,1        ,2 }, //small
117    {  100 ,100   ,3        ,6 }, //medium
118    {  2000,2000  ,5        ,8 }, //big
119    { 20000,20000 ,7        ,10}  //huge
120   }; 
121
122 int main(int argc, char **argv)
123 {
124   int nb_cnst, nb_var,nb_elem,pw_base_limit,pw_max_limit,max_share;
125   float rate_no_limit=0.2;
126   float acc_date=0,acc_date2=0;
127   int testclass,mode,testcount;
128   int i;
129
130   if(argc<3) {
131     printf("Syntax: <small|medium|big|huge> <count> [test|debug|perf]\n");
132     return -1;
133   }
134
135   //what class?
136   if(!strcmp(argv[1],"small"))
137       testclass=0;
138   else if(!strcmp(argv[1],"medium"))
139       testclass=1;
140   else if(!strcmp(argv[1],"big"))
141       testclass=2;
142   else if(!strcmp(argv[1],"huge"))
143       testclass=3;
144   else {
145     printf("Unknown class \"%s\", aborting!\n",argv[1]);
146     return -2;
147   }
148
149   //How many times?
150   testcount=atoi(argv[2]);
151
152   //Show me everything (debug or performance)!
153   mode=0;
154   if(argc>=4 && strcmp(argv[3],"test")==0)
155     mode=1;
156   if(argc>=4 && strcmp(argv[3],"debug")==0)
157     mode=2;
158   if(argc>=4 && strcmp(argv[3],"perf")==0)
159     mode=3;
160
161   if(mode==1)
162     xbt_log_control_set("surf/maxmin.threshold:DEBUG surf/maxmin.fmt:\'[%r]: [%c/%p] %m%n\'\
163                          surf.threshold:DEBUG surf.fmt:\'[%r]: [%c/%p] %m%n\' ");
164
165   if(mode==2)
166     xbt_log_control_set("surf/maxmin.threshold:DEBUG surf.threshold:DEBUG");
167
168   nb_cnst= TestClasses[testclass][0];
169   nb_var= TestClasses[testclass][1];
170   pw_base_limit= TestClasses[testclass][2];
171   pw_max_limit= TestClasses[testclass][3];
172   max_share=2; //1<<(pw_base_limit/2+1);
173
174   //If you want to test concurrency, you need nb_elem >> 2^pw_base_limit:
175   nb_elem= (1<<pw_base_limit)+(1<<(8*pw_max_limit/10));
176   //Otherwise, just set it to a constant value (and set rate_no_limit to 1.0):
177   //nb_elem=200
178
179   xbt_init(&argc, argv);
180
181   for(i=0;i<testcount;i++){
182     seedx=i+1;
183     printf("Starting %i: (%i)\n",i,myrand()%1000);
184     test(nb_cnst, nb_var, nb_elem, pw_base_limit, pw_max_limit, rate_no_limit,max_share,mode);
185     acc_date+=date;
186     acc_date2+=date*date;
187   }
188
189   float mean_date= acc_date/(float)testcount;  
190   float stdev_date= sqrt(acc_date2/(float)testcount-mean_date*mean_date);
191
192   printf("%ix One shot execution time for a total of %d constraints, "
193          "%d variables with %d active constraint each, concurrency in [%i,%i] and max concurrency share %i\n",
194          testcount,nb_cnst, nb_var, nb_elem, (1<<pw_base_limit), (1<<pw_base_limit)+(1<<pw_max_limit), max_share);
195   if(mode==3)
196     printf("Execution time: %g +- %g  microseconds \n",mean_date, stdev_date);
197   return 0;
198 }