Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Remove usage of bad style "using namespace" with little benefit.
[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 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   simgrid::kernel::lmm::Constraint* cnst[nb_cnst];
42   simgrid::kernel::lmm::Variable* var[nb_var];
43   int used[nb_cnst];
44
45   /* We cannot activate the selective update as we pass nullptr as an Action when creating the variables */
46   simgrid::kernel::lmm::System* Sys = new simgrid::kernel::lmm::System(false);
47
48   for (int i = 0; i < nb_cnst; i++) {
49     cnst[i] = Sys->constraint_new(NULL, float_random(10.0));
50     int l;
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     cnst[i]->set_concurrency_limit(l);
59   }
60
61   for (int i = 0; i < nb_var; i++) {
62     var[i] = Sys->variable_new(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     int concurrency_share = 1 + int_random(max_share);
65     var[i]->set_concurrency_share(concurrency_share);
66
67     for (int j = 0; j < nb_cnst; j++)
68       used[j] = 0;
69     for (int j = 0; j < nb_elem; j++) {
70       int k = int_random(nb_cnst);
71       if (used[k]>=concurrency_share) {
72         j--;
73         continue;
74       }
75       Sys->expand(cnst[k], var[i], float_random(1.5));
76       Sys->expand_add(cnst[k], var[i], float_random(1.5));
77       used[k]++;
78     }
79   }
80
81   fprintf(stderr,"Starting to solve(%i)\n",myrand()%1000);
82   date = xbt_os_time() * 1000000;
83   Sys->solve();
84   date = xbt_os_time() * 1000000 - date;
85
86   if(mode==2){
87     fprintf(stderr,"Max concurrency:\n");
88     int l=0;
89     for (int i = 0; i < nb_cnst; i++) {
90       int j = cnst[i]->get_concurrency_maximum();
91       int k = cnst[i]->get_concurrency_limit();
92       xbt_assert(k<0 || j<=k);
93       if(j>l)
94         l=j;
95       fprintf(stderr,"(%i):%i/%i ",i,j,k);
96       cnst[i]->reset_concurrency_maximum();
97       xbt_assert(not cnst[i]->get_concurrency_maximum());
98       if(i%10==9)
99         fprintf(stderr,"\n");
100     }
101     fprintf(stderr,"\nTotal maximum concurrency is %i\n",l);
102
103     Sys->print();
104   }
105
106   for (int i = 0; i < nb_var; i++)
107     Sys->variable_free(var[i]);
108   delete Sys;
109 }
110
111 unsigned int TestClasses [][4]=
112   //Nbcnst Nbvar Baselimit Maxlimit
113   {{  10  ,10    ,1        ,2 }, //small
114    {  100 ,100   ,3        ,6 }, //medium
115    {  2000,2000  ,5        ,8 }, //big
116    { 20000,20000 ,7        ,10}  //huge
117   };
118
119 int main(int argc, char **argv)
120 {
121   MSG_init(&argc, argv);
122
123   float rate_no_limit=0.2;
124   float acc_date=0;
125   float acc_date2=0;
126   int testclass;
127
128   if(argc<3) {
129     fprintf(stderr, "Syntax: <small|medium|big|huge> <count> [test|debug|perf]\n");
130     return -1;
131   }
132
133   //what class?
134   if (not strcmp(argv[1], "small"))
135     testclass = 0;
136   else if (not strcmp(argv[1], "medium"))
137     testclass = 1;
138   else if (not strcmp(argv[1], "big"))
139     testclass = 2;
140   else if (not strcmp(argv[1], "huge"))
141     testclass = 3;
142   else {
143     fprintf(stderr, "Unknown class \"%s\", aborting!\n",argv[1]);
144     return -2;
145   }
146
147   //How many times?
148   int testcount=atoi(argv[2]);
149
150   //Show me everything (debug or performance)!
151   int mode=0;
152   if(argc>=4 && strcmp(argv[3],"test")==0)
153     mode=1;
154   if(argc>=4 && strcmp(argv[3],"debug")==0)
155     mode=2;
156   if(argc>=4 && strcmp(argv[3],"perf")==0)
157     mode=3;
158
159   if(mode==1)
160     xbt_log_control_set("surf/maxmin.threshold:DEBUG surf/maxmin.fmt:\'[%r]: [%c/%p] %m%n\' "
161                         "surf.threshold:DEBUG surf.fmt:\'[%r]: [%c/%p] %m%n\' ");
162
163   if(mode==2)
164     xbt_log_control_set("surf/maxmin.threshold:DEBUG surf.threshold:DEBUG");
165
166   unsigned int nb_cnst= TestClasses[testclass][0];
167   unsigned int nb_var= TestClasses[testclass][1];
168   unsigned int pw_base_limit= TestClasses[testclass][2];
169   unsigned int pw_max_limit= TestClasses[testclass][3];
170   unsigned int max_share    = 2; // 1<<(pw_base_limit/2+1)
171
172   //If you want to test concurrency, you need nb_elem >> 2^pw_base_limit:
173   unsigned int nb_elem= (1<<pw_base_limit)+(1<<(8*pw_max_limit/10));
174   //Otherwise, just set it to a constant value (and set rate_no_limit to 1.0):
175   //nb_elem=200
176
177   for(int i=0;i<testcount;i++){
178     seedx=i+1;
179     fprintf(stderr, "Starting %i: (%i)\n",i,myrand()%1000);
180     test(nb_cnst, nb_var, nb_elem, pw_base_limit, pw_max_limit, rate_no_limit,max_share,mode);
181     acc_date+=date;
182     acc_date2+=date*date;
183   }
184
185   float mean_date= acc_date/(float)testcount;
186   float stdev_date= sqrt(acc_date2/(float)testcount-mean_date*mean_date);
187
188   fprintf(stderr, "%ix One shot execution time for a total of %u constraints, "
189                   "%u variables with %u active constraint each, concurrency in [%i,%i] and max concurrency share %u\n",
190           testcount, nb_cnst, nb_var, nb_elem, (1 << pw_base_limit), (1 << pw_base_limit) + (1 << pw_max_limit),
191           max_share);
192   if(mode==3)
193     fprintf(stderr, "Execution time: %g +- %g  microseconds \n",mean_date, stdev_date);
194
195   return 0;
196 }