Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
51759905fd1a8c2e10119bfe781144febfd00151
[simgrid.git] / teshsuite / surf / maxmin_bench / maxmin_bench.cpp
1 /* A few crash tests for the maxmin library                                 */
2
3 /* Copyright (c) 2004-2018. The SimGrid Team. All rights reserved.          */
4
5 /* This program is free software; you can redistribute it and/or modify it
6  * under the terms of the license (GNU LGPL) which comes with this package. */
7
8 #include "src/kernel/lmm/maxmin.hpp"
9 #include "simgrid/msg.h"
10 #include "xbt/module.h"
11 #include "xbt/sysdep.h" /* time manipulation for benchmarking */
12 #include "xbt/xbt_os_time.h"
13
14 #define MYRANDMAX 1000
15
16 #include <cstdint>
17 #include <cstdio>
18 #include <cstdlib>
19
20 using namespace simgrid::kernel;
21
22 double date;
23 int64_t seedx = 0;
24
25 static int myrand() {
26   seedx=seedx * 16807 % 2147483647;
27   return static_cast<int32_t>(seedx%1000);
28 }
29
30 static double float_random(double max)
31 {
32   return ((max * myrand()) / (MYRANDMAX + 1.0));
33 }
34
35 static unsigned int int_random(int max)
36 {
37   return static_cast<uint32_t>(((max * 1.0) * myrand()) / (MYRANDMAX + 1.0));
38 }
39
40 static void test(int nb_cnst, int nb_var, int nb_elem, unsigned int pw_base_limit, unsigned int pw_max_limit,
41                  float rate_no_limit, int max_share, int mode)
42 {
43   lmm::Constraint* cnst[nb_cnst];
44   lmm::Variable* var[nb_var];
45   int used[nb_cnst];
46
47   /* We cannot activate the selective update as we pass nullptr as an Action when creating the variables */
48   lmm::System* Sys = new lmm::System(false);
49
50   for (int i = 0; i < nb_cnst; i++) {
51     cnst[i] = Sys->constraint_new(NULL, float_random(10.0));
52     int l;
53     if(rate_no_limit>float_random(1.0))
54       //Look at what happens when there is no concurrency limit
55       l=-1;
56     else
57       //Badly logarithmically random concurrency limit in [2^pw_base_limit+1,2^pw_base_limit+2^pw_max_limit]
58       l=(1<<pw_base_limit)+(1<<int_random(pw_max_limit));
59
60     cnst[i]->set_concurrency_limit(l);
61   }
62
63   for (int i = 0; i < nb_var; i++) {
64     var[i] = Sys->variable_new(NULL, 1.0, -1.0, nb_elem);
65     //Have a few variables with a concurrency share of two (e.g. cross-traffic in some cases)
66     int concurrency_share = 1 + int_random(max_share);
67     var[i]->set_concurrency_share(concurrency_share);
68
69     for (int j = 0; j < nb_cnst; j++)
70       used[j] = 0;
71     for (int j = 0; j < nb_elem; j++) {
72       int k = int_random(nb_cnst);
73       if (used[k]>=concurrency_share) {
74         j--;
75         continue;
76       }
77       Sys->expand(cnst[k], var[i], float_random(1.5));
78       Sys->expand_add(cnst[k], var[i], float_random(1.5));
79       used[k]++;
80     }
81   }
82
83   fprintf(stderr,"Starting to solve(%i)\n",myrand()%1000);
84   date = xbt_os_time() * 1000000;
85   Sys->solve();
86   date = xbt_os_time() * 1000000 - date;
87
88   if(mode==2){
89     fprintf(stderr,"Max concurrency:\n");
90     int l=0;
91     for (int i = 0; i < nb_cnst; i++) {
92       int j = cnst[i]->get_concurrency_maximum();
93       int k = cnst[i]->get_concurrency_limit();
94       xbt_assert(k<0 || j<=k);
95       if(j>l)
96         l=j;
97       fprintf(stderr,"(%i):%i/%i ",i,j,k);
98       cnst[i]->reset_concurrency_maximum();
99       xbt_assert(not cnst[i]->get_concurrency_maximum());
100       if(i%10==9)
101         fprintf(stderr,"\n");
102     }
103     fprintf(stderr,"\nTotal maximum concurrency is %i\n",l);
104
105     Sys->print();
106   }
107
108   for (int i = 0; i < nb_var; i++)
109     Sys->variable_free(var[i]);
110   delete Sys;
111 }
112
113 unsigned int TestClasses [][4]=
114   //Nbcnst Nbvar Baselimit Maxlimit
115   {{  10  ,10    ,1        ,2 }, //small
116    {  100 ,100   ,3        ,6 }, //medium
117    {  2000,2000  ,5        ,8 }, //big
118    { 20000,20000 ,7        ,10}  //huge
119   };
120
121 int main(int argc, char **argv)
122 {
123   MSG_init(&argc, argv);
124
125   float rate_no_limit=0.2;
126   float acc_date=0;
127   float acc_date2=0;
128   int testclass;
129
130   if(argc<3) {
131     fprintf(stderr, "Syntax: <small|medium|big|huge> <count> [test|debug|perf]\n");
132     return -1;
133   }
134
135   //what class?
136   if (not strcmp(argv[1], "small"))
137     testclass = 0;
138   else if (not strcmp(argv[1], "medium"))
139     testclass = 1;
140   else if (not strcmp(argv[1], "big"))
141     testclass = 2;
142   else if (not strcmp(argv[1], "huge"))
143     testclass = 3;
144   else {
145     fprintf(stderr, "Unknown class \"%s\", aborting!\n",argv[1]);
146     return -2;
147   }
148
149   //How many times?
150   int testcount=atoi(argv[2]);
151
152   //Show me everything (debug or performance)!
153   int 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   unsigned int nb_cnst= TestClasses[testclass][0];
169   unsigned int nb_var= TestClasses[testclass][1];
170   unsigned int pw_base_limit= TestClasses[testclass][2];
171   unsigned int pw_max_limit= TestClasses[testclass][3];
172   unsigned int 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   unsigned int 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   for(int i=0;i<testcount;i++){
180     seedx=i+1;
181     fprintf(stderr, "Starting %i: (%i)\n",i,myrand()%1000);
182     test(nb_cnst, nb_var, nb_elem, pw_base_limit, pw_max_limit, rate_no_limit,max_share,mode);
183     acc_date+=date;
184     acc_date2+=date*date;
185   }
186
187   float mean_date= acc_date/(float)testcount;
188   float stdev_date= sqrt(acc_date2/(float)testcount-mean_date*mean_date);
189
190   fprintf(stderr, "%ix One shot execution time for a total of %u constraints, "
191                   "%u variables with %u active constraint each, concurrency in [%i,%i] and max concurrency share %u\n",
192           testcount, nb_cnst, nb_var, nb_elem, (1 << pw_base_limit), (1 << pw_base_limit) + (1 << pw_max_limit),
193           max_share);
194   if(mode==3)
195     fprintf(stderr, "Execution time: %g +- %g  microseconds \n",mean_date, stdev_date);
196
197   return 0;
198 }