Logo AND Algorithmique Numérique Distribuée

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