Logo AND Algorithmique Numérique Distribuée

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