Logo AND Algorithmique Numérique Distribuée

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