Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Convert surf/maxmin_bench to xbt/random too.
[simgrid.git] / teshsuite / surf / maxmin_bench / maxmin_bench.cpp
1 /* A few crash tests for the maxmin library                                 */
2
3 /* Copyright (c) 2004-2020. 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/s4u/Engine.hpp"
10 #include "xbt/module.h"
11 #include "xbt/random.hpp"
12 #include "xbt/sysdep.h" /* time manipulation for benchmarking */
13 #include "xbt/xbt_os_time.h"
14
15 #include <cstdint>
16 #include <cstdio>
17 #include <cstdlib>
18
19 double date;
20
21 static void test(int nb_cnst, int nb_var, int nb_elem, unsigned int pw_base_limit, unsigned int pw_max_limit,
22                  float rate_no_limit, int max_share, int mode)
23 {
24   simgrid::kernel::lmm::Constraint** cnst = new simgrid::kernel::lmm::Constraint*[nb_cnst];
25   simgrid::kernel::lmm::Variable** var = new simgrid::kernel::lmm::Variable*[nb_var];
26   int* used = new int[nb_cnst];
27
28   /* We cannot activate the selective update as we pass nullptr as an Action when creating the variables */
29   simgrid::kernel::lmm::System* Sys = new simgrid::kernel::lmm::System(false);
30
31   for (int i = 0; i < nb_cnst; i++) {
32     cnst[i] = Sys->constraint_new(NULL, simgrid::xbt::random::uniform_real(0.0, 10.0));
33     int l;
34     if (rate_no_limit > simgrid::xbt::random::uniform_real(0.0, 1.0)) {
35       // Look at what happens when there is no concurrency limit
36       l = -1;
37     } else {
38       // Badly logarithmically random concurrency limit in [2^pw_base_limit+1,2^pw_base_limit+2^pw_max_limit]
39       l = (1 << pw_base_limit) + (1 << simgrid::xbt::random::uniform_int(0, pw_max_limit - 1));
40     }
41     cnst[i]->set_concurrency_limit(l);
42   }
43
44   for (int i = 0; i < nb_var; i++) {
45     var[i] = Sys->variable_new(NULL, 1.0, -1.0, nb_elem);
46     //Have a few variables with a concurrency share of two (e.g. cross-traffic in some cases)
47     int concurrency_share = 1 + simgrid::xbt::random::uniform_int(0, max_share - 1);
48     var[i]->set_concurrency_share(concurrency_share);
49
50     for (int j = 0; j < nb_cnst; j++)
51       used[j] = 0;
52     for (int j = 0; j < nb_elem; j++) {
53       int k = simgrid::xbt::random::uniform_int(0, nb_cnst - 1);
54       if (used[k]>=concurrency_share) {
55         j--;
56         continue;
57       }
58       Sys->expand(cnst[k], var[i], simgrid::xbt::random::uniform_real(0.0, 1.5));
59       Sys->expand_add(cnst[k], var[i], simgrid::xbt::random::uniform_real(0.0, 1.5));
60       used[k]++;
61     }
62   }
63
64   fprintf(stderr, "Starting to solve(%i)\n", simgrid::xbt::random::uniform_int(0, 999));
65   date = xbt_os_time() * 1000000;
66   Sys->solve();
67   date = xbt_os_time() * 1000000 - date;
68
69   if(mode==2){
70     fprintf(stderr,"Max concurrency:\n");
71     int l=0;
72     for (int i = 0; i < nb_cnst; i++) {
73       int j = cnst[i]->get_concurrency_maximum();
74       int k = cnst[i]->get_concurrency_limit();
75       xbt_assert(k<0 || j<=k);
76       if(j>l)
77         l=j;
78       fprintf(stderr,"(%i):%i/%i ",i,j,k);
79       cnst[i]->reset_concurrency_maximum();
80       xbt_assert(not cnst[i]->get_concurrency_maximum());
81       if(i%10==9)
82         fprintf(stderr,"\n");
83     }
84     fprintf(stderr,"\nTotal maximum concurrency is %i\n",l);
85
86     Sys->print();
87   }
88
89   for (int i = 0; i < nb_var; i++)
90     Sys->variable_free(var[i]);
91   delete Sys;
92   delete[] cnst;
93   delete[] var;
94   delete[] used;
95 }
96
97 unsigned int TestClasses [][4]=
98   //Nbcnst Nbvar Baselimit Maxlimit
99   {{  10  ,10    ,1        ,2 }, //small
100    {  100 ,100   ,3        ,6 }, //medium
101    {  2000,2000  ,5        ,8 }, //big
102    { 20000,20000 ,7        ,10}  //huge
103   };
104
105 int main(int argc, char **argv)
106 {
107   simgrid::s4u::Engine e(&argc, argv);
108
109   float rate_no_limit=0.2;
110   float acc_date=0;
111   float acc_date2=0;
112   int testclass;
113
114   if(argc<3) {
115     fprintf(stderr, "Syntax: <small|medium|big|huge> <count> [test|debug|perf]\n");
116     return -1;
117   }
118
119   //what class?
120   if (not strcmp(argv[1], "small"))
121     testclass = 0;
122   else if (not strcmp(argv[1], "medium"))
123     testclass = 1;
124   else if (not strcmp(argv[1], "big"))
125     testclass = 2;
126   else if (not strcmp(argv[1], "huge"))
127     testclass = 3;
128   else {
129     fprintf(stderr, "Unknown class \"%s\", aborting!\n",argv[1]);
130     return -2;
131   }
132
133   //How many times?
134   int testcount=atoi(argv[2]);
135
136   //Show me everything (debug or performance)!
137   int mode=0;
138   if(argc>=4 && strcmp(argv[3],"test")==0)
139     mode=1;
140   if(argc>=4 && strcmp(argv[3],"debug")==0)
141     mode=2;
142   if(argc>=4 && strcmp(argv[3],"perf")==0)
143     mode=3;
144
145   if(mode==1)
146     xbt_log_control_set("surf/maxmin.threshold:DEBUG surf/maxmin.fmt:\'[%r]: [%c/%p] %m%n\' "
147                         "surf.threshold:DEBUG surf.fmt:\'[%r]: [%c/%p] %m%n\' ");
148
149   if(mode==2)
150     xbt_log_control_set("surf/maxmin.threshold:DEBUG surf.threshold:DEBUG");
151
152   unsigned int nb_cnst= TestClasses[testclass][0];
153   unsigned int nb_var= TestClasses[testclass][1];
154   unsigned int pw_base_limit= TestClasses[testclass][2];
155   unsigned int pw_max_limit= TestClasses[testclass][3];
156   unsigned int max_share    = 2; // 1<<(pw_base_limit/2+1)
157
158   //If you want to test concurrency, you need nb_elem >> 2^pw_base_limit:
159   unsigned int nb_elem= (1<<pw_base_limit)+(1<<(8*pw_max_limit/10));
160   //Otherwise, just set it to a constant value (and set rate_no_limit to 1.0):
161   //nb_elem=200
162
163   for(int i=0;i<testcount;i++){
164     simgrid::xbt::random::set_mersenne_seed(i + 1);
165     fprintf(stderr, "Starting %i: (%i)\n", i, simgrid::xbt::random::uniform_int(0, 999));
166     test(nb_cnst, nb_var, nb_elem, pw_base_limit, pw_max_limit, rate_no_limit,max_share,mode);
167     acc_date+=date;
168     acc_date2+=date*date;
169   }
170
171   float mean_date= acc_date/(float)testcount;
172   float stdev_date= sqrt(acc_date2/(float)testcount-mean_date*mean_date);
173
174   fprintf(stderr, "%ix One shot execution time for a total of %u constraints, "
175                   "%u variables with %u active constraint each, concurrency in [%i,%i] and max concurrency share %u\n",
176           testcount, nb_cnst, nb_var, nb_elem, (1 << pw_base_limit), (1 << pw_base_limit) + (1 << pw_max_limit),
177           max_share);
178   if(mode==3)
179     fprintf(stderr, "Execution time: %g +- %g  microseconds \n",mean_date, stdev_date);
180
181   return 0;
182 }