Split txtdump.*, part 1
[alexxy/gromacs.git] / src / gromacs / gmxana / gmx_tune_pme.cpp
1 /*
2  * This file is part of the GROMACS molecular simulation package.
3  *
4  * Copyright (c) 2009,2010,2011,2012,2013,2014,2015, by the GROMACS development team, led by
5  * Mark Abraham, David van der Spoel, Berk Hess, and Erik Lindahl,
6  * and including many others, as listed in the AUTHORS file in the
7  * top-level source directory and at http://www.gromacs.org.
8  *
9  * GROMACS is free software; you can redistribute it and/or
10  * modify it under the terms of the GNU Lesser General Public License
11  * as published by the Free Software Foundation; either version 2.1
12  * of the License, or (at your option) any later version.
13  *
14  * GROMACS is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17  * Lesser General Public License for more details.
18  *
19  * You should have received a copy of the GNU Lesser General Public
20  * License along with GROMACS; if not, see
21  * http://www.gnu.org/licenses, or write to the Free Software Foundation,
22  * Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA.
23  *
24  * If you want to redistribute modifications to GROMACS, please
25  * consider that scientific software is very special. Version
26  * control is crucial - bugs must be traceable. We will be happy to
27  * consider code for inclusion in the official distribution, but
28  * derived work must not be called official GROMACS. Details are found
29  * in the README & COPYING files - if they are missing, get the
30  * official version at http://www.gromacs.org.
31  *
32  * To help us fund GROMACS development, we humbly ask that you cite
33  * the research papers on the package. Check out http://www.gromacs.org.
34  */
35 #include "gmxpre.h"
36
37 #include "config.h"
38
39 #include <cmath>
40 #include <cstdlib>
41 #include <cstring>
42 #include <ctime>
43
44 #include <algorithm>
45
46 #ifdef HAVE_SYS_TIME_H
47 #include <sys/time.h>
48 #endif
49
50 #include "gromacs/commandline/pargs.h"
51 #include "gromacs/fileio/checkpoint.h"
52 #include "gromacs/fileio/tpxio.h"
53 #include "gromacs/gmxana/gmx_ana.h"
54 #include "gromacs/gmxlib/calcgrid.h"
55 #include "gromacs/gmxlib/readinp.h"
56 #include "gromacs/math/utilities.h"
57 #include "gromacs/math/vec.h"
58 #include "gromacs/mdlib/perf_est.h"
59 #include "gromacs/mdtypes/commrec.h"
60 #include "gromacs/mdtypes/inputrec.h"
61 #include "gromacs/mdtypes/md_enums.h"
62 #include "gromacs/pbcutil/pbc.h"
63 #include "gromacs/timing/walltime_accounting.h"
64 #include "gromacs/topology/topology.h"
65 #include "gromacs/utility/arraysize.h"
66 #include "gromacs/utility/baseversion.h"
67 #include "gromacs/utility/cstringutil.h"
68 #include "gromacs/utility/fatalerror.h"
69 #include "gromacs/utility/futil.h"
70 #include "gromacs/utility/gmxassert.h"
71 #include "gromacs/utility/smalloc.h"
72
73 /* Enum for situations that can occur during log file parsing, the
74  * corresponding string entries can be found in do_the_tests() in
75  * const char* ParseLog[] */
76 /* TODO clean up CamelCasing of these enum names */
77 enum {
78     eParselogOK,
79     eParselogNotFound,
80     eParselogNoPerfData,
81     eParselogTerm,
82     eParselogResetProblem,
83     eParselogNoDDGrid,
84     eParselogTPXVersion,
85     eParselogNotParallel,
86     eParselogLargePrimeFactor,
87     eParselogMismatchOfNumberOfPPRanksAndAvailableGPUs,
88     eParselogGpuProblem,
89     eParselogFatal,
90     eParselogNr
91 };
92
93
94 typedef struct
95 {
96     int     nPMEnodes;    /* number of PME-only nodes used in this test */
97     int     nx, ny, nz;   /* DD grid */
98     int     guessPME;     /* if nPMEnodes == -1, this is the guessed number of PME nodes */
99     double *Gcycles;      /* This can contain more than one value if doing multiple tests */
100     double  Gcycles_Av;
101     float  *ns_per_day;
102     float   ns_per_day_Av;
103     float  *PME_f_load;     /* PME mesh/force load average*/
104     float   PME_f_load_Av;  /* Average average ;) ... */
105     char   *mdrun_cmd_line; /* Mdrun command line used for this test */
106 } t_perf;
107
108
109 typedef struct
110 {
111     int             nr_inputfiles;   /* The number of tpr and mdp input files */
112     gmx_int64_t     orig_sim_steps;  /* Number of steps to be done in the real simulation */
113     gmx_int64_t     orig_init_step;  /* Init step for the real simulation */
114     real           *rcoulomb;        /* The coulomb radii [0...nr_inputfiles] */
115     real           *rvdw;            /* The vdW radii */
116     real           *rlist;           /* Neighbourlist cutoff radius */
117     int            *nkx, *nky, *nkz;
118     real           *fsx, *fsy, *fsz; /* Fourierspacing in x,y,z dimension */
119 } t_inputinfo;
120
121
122 static void sep_line(FILE *fp)
123 {
124     fprintf(fp, "\n------------------------------------------------------------\n");
125 }
126
127
128 /* Wrapper for system calls */
129 static int gmx_system_call(char *command)
130 {
131     return ( system(command) );
132 }
133
134
135 /* Check if string starts with substring */
136 static gmx_bool str_starts(const char *string, const char *substring)
137 {
138     return ( std::strncmp(string, substring, std::strlen(substring)) == 0);
139 }
140
141
142 static void cleandata(t_perf *perfdata, int test_nr)
143 {
144     perfdata->Gcycles[test_nr]    = 0.0;
145     perfdata->ns_per_day[test_nr] = 0.0;
146     perfdata->PME_f_load[test_nr] = 0.0;
147
148     return;
149 }
150
151
152 static void remove_if_exists(const char *fn)
153 {
154     if (gmx_fexist(fn))
155     {
156         fprintf(stdout, "Deleting %s\n", fn);
157         remove(fn);
158     }
159 }
160
161
162 static void finalize(const char *fn_out)
163 {
164     char  buf[STRLEN];
165     FILE *fp;
166
167
168     fp = fopen(fn_out, "r");
169     fprintf(stdout, "\n\n");
170
171     while (fgets(buf, STRLEN-1, fp) != NULL)
172     {
173         fprintf(stdout, "%s", buf);
174     }
175     fclose(fp);
176     fprintf(stdout, "\n\n");
177 }
178
179
180 enum {
181     eFoundNothing, eFoundDDStr, eFoundAccountingStr, eFoundCycleStr
182 };
183
184 static int parse_logfile(const char *logfile, const char *errfile,
185                          t_perf *perfdata, int test_nr, int presteps, gmx_int64_t cpt_steps,
186                          int nnodes)
187 {
188     FILE           *fp;
189     char            line[STRLEN], dumstring[STRLEN], dumstring2[STRLEN];
190     const char      matchstrdd[]  = "Domain decomposition grid";
191     const char      matchstrcr[]  = "resetting all time and cycle counters";
192     const char      matchstrbal[] = "Average PME mesh/force load:";
193     const char      matchstring[] = "R E A L   C Y C L E   A N D   T I M E   A C C O U N T I N G";
194     const char      errSIG[]      = "signal, stopping at the next";
195     int             iFound;
196     float           dum1, dum2, dum3, dum4;
197     int             ndum;
198     int             npme;
199     gmx_int64_t     resetsteps     = -1;
200     gmx_bool        bFoundResetStr = FALSE;
201     gmx_bool        bResetChecked  = FALSE;
202
203
204     if (!gmx_fexist(logfile))
205     {
206         fprintf(stderr, "WARNING: Could not find logfile %s.\n", logfile);
207         cleandata(perfdata, test_nr);
208         return eParselogNotFound;
209     }
210
211     fp = fopen(logfile, "r");
212     perfdata->PME_f_load[test_nr] = -1.0;
213     perfdata->guessPME            = -1;
214
215     iFound = eFoundNothing;
216     if (1 == nnodes)
217     {
218         iFound = eFoundDDStr; /* Skip some case statements */
219     }
220
221     while (fgets(line, STRLEN, fp) != NULL)
222     {
223         /* Remove leading spaces */
224         ltrim(line);
225
226         /* Check for TERM and INT signals from user: */
227         if (std::strstr(line, errSIG) != NULL)
228         {
229             fclose(fp);
230             cleandata(perfdata, test_nr);
231             return eParselogTerm;
232         }
233
234         /* Check whether cycle resetting  worked */
235         if (presteps > 0 && !bFoundResetStr)
236         {
237             if (std::strstr(line, matchstrcr) != NULL)
238             {
239                 sprintf(dumstring, "step %s", "%" GMX_SCNd64);
240                 sscanf(line, dumstring, &resetsteps);
241                 bFoundResetStr = TRUE;
242                 if (resetsteps == presteps+cpt_steps)
243                 {
244                     bResetChecked = TRUE;
245                 }
246                 else
247                 {
248                     sprintf(dumstring, "%" GMX_PRId64, resetsteps);
249                     sprintf(dumstring2, "%" GMX_PRId64, presteps+cpt_steps);
250                     fprintf(stderr, "WARNING: Time step counters were reset at step %s,\n"
251                             "         though they were supposed to be reset at step %s!\n",
252                             dumstring, dumstring2);
253                 }
254             }
255         }
256
257         /* Look for strings that appear in a certain order in the log file: */
258         switch (iFound)
259         {
260             case eFoundNothing:
261                 /* Look for domain decomp grid and separate PME nodes: */
262                 if (str_starts(line, matchstrdd))
263                 {
264                     sscanf(line, "Domain decomposition grid %d x %d x %d, separate PME ranks %d",
265                            &(perfdata->nx), &(perfdata->ny), &(perfdata->nz), &npme);
266                     if (perfdata->nPMEnodes == -1)
267                     {
268                         perfdata->guessPME = npme;
269                     }
270                     else if (perfdata->nPMEnodes != npme)
271                     {
272                         gmx_fatal(FARGS, "PME ranks from command line and output file are not identical");
273                     }
274                     iFound = eFoundDDStr;
275                 }
276                 /* Catch a few errors that might have occured: */
277                 else if (str_starts(line, "There is no domain decomposition for"))
278                 {
279                     fclose(fp);
280                     return eParselogNoDDGrid;
281                 }
282                 else if (str_starts(line, "The number of ranks you selected"))
283                 {
284                     fclose(fp);
285                     return eParselogLargePrimeFactor;
286                 }
287                 else if (str_starts(line, "reading tpx file"))
288                 {
289                     fclose(fp);
290                     return eParselogTPXVersion;
291                 }
292                 else if (str_starts(line, "The -dd or -npme option request a parallel simulation"))
293                 {
294                     fclose(fp);
295                     return eParselogNotParallel;
296                 }
297                 break;
298             case eFoundDDStr:
299                 /* Even after the "Domain decomposition grid" string was found,
300                  * it could be that mdrun had to quit due to some error. */
301                 if (str_starts(line, "Incorrect launch configuration: mismatching number of"))
302                 {
303                     fclose(fp);
304                     return eParselogMismatchOfNumberOfPPRanksAndAvailableGPUs;
305                 }
306                 else if (str_starts(line, "Some of the requested GPUs do not exist"))
307                 {
308                     fclose(fp);
309                     return eParselogGpuProblem;
310                 }
311                 /* Look for PME mesh/force balance (not necessarily present, though) */
312                 else if (str_starts(line, matchstrbal))
313                 {
314                     sscanf(&line[std::strlen(matchstrbal)], "%f", &(perfdata->PME_f_load[test_nr]));
315                 }
316                 /* Look for matchstring */
317                 else if (str_starts(line, matchstring))
318                 {
319                     iFound = eFoundAccountingStr;
320                 }
321                 break;
322             case eFoundAccountingStr:
323                 /* Already found matchstring - look for cycle data */
324                 if (str_starts(line, "Total  "))
325                 {
326                     sscanf(line, "Total %*f %lf", &(perfdata->Gcycles[test_nr]));
327                     iFound = eFoundCycleStr;
328                 }
329                 break;
330             case eFoundCycleStr:
331                 /* Already found cycle data - look for remaining performance info and return */
332                 if (str_starts(line, "Performance:"))
333                 {
334                     ndum = sscanf(line, "%s %f %f %f %f", dumstring, &dum1, &dum2, &dum3, &dum4);
335                     /* (ns/day) is the second last entry, depending on whether GMX_DETAILED_PERF_STATS was set in print_perf(), nrnb.c */
336                     perfdata->ns_per_day[test_nr] = (ndum == 5) ? dum3 : dum1;
337                     fclose(fp);
338                     if (bResetChecked || presteps == 0)
339                     {
340                         return eParselogOK;
341                     }
342                     else
343                     {
344                         return eParselogResetProblem;
345                     }
346                 }
347                 break;
348         }
349     } /* while */
350
351     /* Close the log file */
352     fclose(fp);
353
354     /* Check why there is no performance data in the log file.
355      * Did a fatal errors occur? */
356     if (gmx_fexist(errfile))
357     {
358         fp = fopen(errfile, "r");
359         while (fgets(line, STRLEN, fp) != NULL)
360         {
361             if (str_starts(line, "Fatal error:") )
362             {
363                 if (fgets(line, STRLEN, fp) != NULL)
364                 {
365                     fprintf(stderr, "\nWARNING: An error occured during this benchmark:\n"
366                             "%s\n", line);
367                 }
368                 fclose(fp);
369                 cleandata(perfdata, test_nr);
370                 return eParselogFatal;
371             }
372         }
373         fclose(fp);
374     }
375     else
376     {
377         fprintf(stderr, "WARNING: Could not find stderr file %s.\n", errfile);
378     }
379
380     /* Giving up ... we could not find out why there is no performance data in
381      * the log file. */
382     fprintf(stdout, "No performance data in log file.\n");
383     cleandata(perfdata, test_nr);
384
385     return eParselogNoPerfData;
386 }
387
388
389 static gmx_bool analyze_data(
390         FILE         *fp,
391         const char   *fn,
392         t_perf      **perfdata,
393         int           nnodes,
394         int           ntprs,
395         int           ntests,
396         int           nrepeats,
397         t_inputinfo  *info,
398         int          *index_tpr,    /* OUT: Nr of mdp file with best settings */
399         int          *npme_optimal) /* OUT: Optimal number of PME nodes */
400 {
401     int      i, j, k;
402     int      line  = 0, line_win = -1;
403     int      k_win = -1, i_win = -1, winPME;
404     double   s     = 0.0; /* standard deviation */
405     t_perf  *pd;
406     char     strbuf[STRLEN];
407     char     str_PME_f_load[13];
408     gmx_bool bCanUseOrigTPR;
409     gmx_bool bRefinedCoul, bRefinedVdW, bRefinedGrid;
410
411
412     if (nrepeats > 1)
413     {
414         sep_line(fp);
415         fprintf(fp, "Summary of successful runs:\n");
416         fprintf(fp, "Line tpr PME ranks  Gcycles Av.     Std.dev.       ns/day        PME/f");
417         if (nnodes > 1)
418         {
419             fprintf(fp, "    DD grid");
420         }
421         fprintf(fp, "\n");
422     }
423
424
425     for (k = 0; k < ntprs; k++)
426     {
427         for (i = 0; i < ntests; i++)
428         {
429             /* Select the right dataset: */
430             pd = &(perfdata[k][i]);
431
432             pd->Gcycles_Av    = 0.0;
433             pd->PME_f_load_Av = 0.0;
434             pd->ns_per_day_Av = 0.0;
435
436             if (pd->nPMEnodes == -1)
437             {
438                 sprintf(strbuf, "(%3d)", pd->guessPME);
439             }
440             else
441             {
442                 sprintf(strbuf, "     ");
443             }
444
445             /* Get the average run time of a setting */
446             for (j = 0; j < nrepeats; j++)
447             {
448                 pd->Gcycles_Av    += pd->Gcycles[j];
449                 pd->PME_f_load_Av += pd->PME_f_load[j];
450             }
451             pd->Gcycles_Av    /= nrepeats;
452             pd->PME_f_load_Av /= nrepeats;
453
454             for (j = 0; j < nrepeats; j++)
455             {
456                 if (pd->ns_per_day[j] > 0.0)
457                 {
458                     pd->ns_per_day_Av += pd->ns_per_day[j];
459                 }
460                 else
461                 {
462                     /* Somehow the performance number was not aquired for this run,
463                      * therefor set the average to some negative value: */
464                     pd->ns_per_day_Av = -1.0f*nrepeats;
465                     break;
466                 }
467             }
468             pd->ns_per_day_Av /= nrepeats;
469
470             /* Nicer output: */
471             if (pd->PME_f_load_Av > 0.0)
472             {
473                 sprintf(str_PME_f_load, "%12.3f", pd->PME_f_load_Av);
474             }
475             else
476             {
477                 sprintf(str_PME_f_load, "%s", "         -  ");
478             }
479
480
481             /* We assume we had a successful run if both averages are positive */
482             if (pd->Gcycles_Av > 0.0 && pd->ns_per_day_Av > 0.0)
483             {
484                 /* Output statistics if repeats were done */
485                 if (nrepeats > 1)
486                 {
487                     /* Calculate the standard deviation */
488                     s = 0.0;
489                     for (j = 0; j < nrepeats; j++)
490                     {
491                         s += std::pow( pd->Gcycles[j] - pd->Gcycles_Av, 2 );
492                     }
493                     s /= (nrepeats - 1);
494                     s  = std::sqrt(s);
495
496                     fprintf(fp, "%4d %3d %4d%s %12.3f %12.3f %12.3f %s",
497                             line, k, pd->nPMEnodes, strbuf, pd->Gcycles_Av, s,
498                             pd->ns_per_day_Av, str_PME_f_load);
499                     if (nnodes > 1)
500                     {
501                         fprintf(fp, "  %3d %3d %3d", pd->nx, pd->ny, pd->nz);
502                     }
503                     fprintf(fp, "\n");
504                 }
505                 /* Store the index of the best run found so far in 'winner': */
506                 if ( (k_win == -1) || (pd->Gcycles_Av < perfdata[k_win][i_win].Gcycles_Av) )
507                 {
508                     k_win    = k;
509                     i_win    = i;
510                     line_win = line;
511                 }
512                 line++;
513             }
514         }
515     }
516
517     if (k_win == -1)
518     {
519         gmx_fatal(FARGS, "None of the runs was successful! Check %s for problems.", fn);
520     }
521
522     sep_line(fp);
523
524     winPME = perfdata[k_win][i_win].nPMEnodes;
525
526     if (1 == ntests)
527     {
528         /* We stuck to a fixed number of PME-only nodes */
529         sprintf(strbuf, "settings No. %d", k_win);
530     }
531     else
532     {
533         /* We have optimized the number of PME-only nodes */
534         if (winPME == -1)
535         {
536             sprintf(strbuf, "%s", "the automatic number of PME ranks");
537         }
538         else
539         {
540             sprintf(strbuf, "%d PME ranks", winPME);
541         }
542     }
543     fprintf(fp, "Best performance was achieved with %s", strbuf);
544     if ((nrepeats > 1) && (ntests > 1))
545     {
546         fprintf(fp, " (see line %d)", line_win);
547     }
548     fprintf(fp, "\n");
549
550     /* Only mention settings if they were modified: */
551     bRefinedCoul = !gmx_within_tol(info->rcoulomb[k_win], info->rcoulomb[0], GMX_REAL_EPS);
552     bRefinedVdW  = !gmx_within_tol(info->rvdw[k_win], info->rvdw[0], GMX_REAL_EPS);
553     bRefinedGrid = !(info->nkx[k_win] == info->nkx[0] &&
554                      info->nky[k_win] == info->nky[0] &&
555                      info->nkz[k_win] == info->nkz[0]);
556
557     if (bRefinedCoul || bRefinedVdW || bRefinedGrid)
558     {
559         fprintf(fp, "Optimized PME settings:\n");
560         bCanUseOrigTPR = FALSE;
561     }
562     else
563     {
564         bCanUseOrigTPR = TRUE;
565     }
566
567     if (bRefinedCoul)
568     {
569         fprintf(fp, "   New Coulomb radius: %f nm (was %f nm)\n", info->rcoulomb[k_win], info->rcoulomb[0]);
570     }
571
572     if (bRefinedVdW)
573     {
574         fprintf(fp, "   New Van der Waals radius: %f nm (was %f nm)\n", info->rvdw[k_win], info->rvdw[0]);
575     }
576
577     if (bRefinedGrid)
578     {
579         fprintf(fp, "   New Fourier grid xyz: %d %d %d (was %d %d %d)\n", info->nkx[k_win], info->nky[k_win], info->nkz[k_win],
580                 info->nkx[0], info->nky[0], info->nkz[0]);
581     }
582
583     if (bCanUseOrigTPR && ntprs > 1)
584     {
585         fprintf(fp, "and original PME settings.\n");
586     }
587
588     fflush(fp);
589
590     /* Return the index of the mdp file that showed the highest performance
591      * and the optimal number of PME nodes */
592     *index_tpr    = k_win;
593     *npme_optimal = winPME;
594
595     return bCanUseOrigTPR;
596 }
597
598
599 /* Get the commands we need to set up the runs from environment variables */
600 static void get_program_paths(gmx_bool bThreads, char *cmd_mpirun[], char *cmd_mdrun[])
601 {
602     char      *cp;
603     const char def_mpirun[]   = "mpirun";
604
605     const char empty_mpirun[] = "";
606
607     /* Get the commands we need to set up the runs from environment variables */
608     if (!bThreads)
609     {
610         if ( (cp = getenv("MPIRUN")) != NULL)
611         {
612             *cmd_mpirun = gmx_strdup(cp);
613         }
614         else
615         {
616             *cmd_mpirun = gmx_strdup(def_mpirun);
617         }
618     }
619     else
620     {
621         *cmd_mpirun = gmx_strdup(empty_mpirun);
622     }
623
624     if (*cmd_mdrun == NULL)
625     {
626         /* The use of MDRUN is deprecated, but made available in 5.1
627            for backward compatibility. It may be removed in a future
628            version. */
629         if ( (cp = getenv("MDRUN" )) != NULL)
630         {
631             *cmd_mdrun = gmx_strdup(cp);
632         }
633         else
634         {
635             gmx_fatal(FARGS, "The way to call mdrun must be set in the -mdrun command-line flag.");
636         }
637     }
638 }
639
640 /* Check that the commands will run mdrun (perhaps via mpirun) by
641  * running a very quick test simulation. Requires MPI environment or
642  * GPU support to be available if applicable. */
643 /* TODO implement feature to parse the log file to get the list of
644    compatible GPUs from mdrun, if the user of gmx tune-pme has not
645    given one. */
646 static void check_mdrun_works(gmx_bool    bThreads,
647                               const char *cmd_mpirun,
648                               const char *cmd_np,
649                               const char *cmd_mdrun,
650                               gmx_bool    bNeedGpuSupport)
651 {
652     char      *command = NULL;
653     char      *cp;
654     char       line[STRLEN];
655     FILE      *fp;
656     const char filename[]     = "benchtest.log";
657
658     /* This string should always be identical to the one in copyrite.c,
659      * gmx_print_version_info() in the defined(GMX_MPI) section */
660     const char match_mpi[]     = "MPI library:        MPI";
661     const char match_mdrun[]   = "Executable: ";
662     const char match_gpu[]     = "GPU support:        enabled";
663     gmx_bool   bMdrun          = FALSE;
664     gmx_bool   bMPI            = FALSE;
665     gmx_bool   bHaveGpuSupport = FALSE;
666
667     /* Run a small test to see whether mpirun + mdrun work  */
668     fprintf(stdout, "Making sure that mdrun can be executed. ");
669     if (bThreads)
670     {
671         snew(command, std::strlen(cmd_mdrun) + std::strlen(cmd_np) + std::strlen(filename) + 50);
672         sprintf(command, "%s%s-version -maxh 0.001 1> %s 2>&1", cmd_mdrun, cmd_np, filename);
673     }
674     else
675     {
676         snew(command, std::strlen(cmd_mpirun) + std::strlen(cmd_np) + std::strlen(cmd_mdrun) + std::strlen(filename) + 50);
677         sprintf(command, "%s%s%s -version -maxh 0.001 1> %s 2>&1", cmd_mpirun, cmd_np, cmd_mdrun, filename);
678     }
679     fprintf(stdout, "Trying '%s' ... ", command);
680     make_backup(filename);
681     gmx_system_call(command);
682
683     /* Check if we find the characteristic string in the output: */
684     if (!gmx_fexist(filename))
685     {
686         gmx_fatal(FARGS, "Output from test run could not be found.");
687     }
688
689     fp = fopen(filename, "r");
690     /* We need to scan the whole output file, since sometimes the queuing system
691      * also writes stuff to stdout/err */
692     while (!feof(fp) )
693     {
694         cp = fgets(line, STRLEN, fp);
695         if (cp != NULL)
696         {
697             if (str_starts(line, match_mdrun) )
698             {
699                 bMdrun = TRUE;
700             }
701             if (str_starts(line, match_mpi) )
702             {
703                 bMPI = TRUE;
704             }
705             if (str_starts(line, match_gpu) )
706             {
707                 bHaveGpuSupport = TRUE;
708             }
709         }
710     }
711     fclose(fp);
712
713     if (bThreads)
714     {
715         if (bMPI)
716         {
717             gmx_fatal(FARGS, "Need a threaded version of mdrun. This one\n"
718                       "(%s)\n"
719                       "seems to have been compiled with MPI instead.",
720                       cmd_mdrun);
721         }
722     }
723     else
724     {
725         if (bMdrun && !bMPI)
726         {
727             gmx_fatal(FARGS, "Need an MPI-enabled version of mdrun. This one\n"
728                       "(%s)\n"
729                       "seems to have been compiled without MPI support.",
730                       cmd_mdrun);
731         }
732     }
733
734     if (!bMdrun)
735     {
736         gmx_fatal(FARGS, "Cannot execute mdrun. Please check %s for problems!",
737                   filename);
738     }
739
740     if (bNeedGpuSupport && !bHaveGpuSupport)
741     {
742         gmx_fatal(FARGS, "The mdrun executable did not have the expected GPU support.");
743     }
744
745     fprintf(stdout, "passed.\n");
746
747     /* Clean up ... */
748     remove(filename);
749     sfree(command);
750 }
751
752 /*! \brief Helper struct so we can parse the string with eligible GPU
753     IDs outside do_the_tests. */
754 typedef struct eligible_gpu_ids
755 {
756     int  n;        /**< Length of ids */
757     int *ids;      /**< Array of length n. NULL if no GPUs in use */
758 } t_eligible_gpu_ids;
759
760 /* Handles the no-GPU case by emitting an empty string. */
761 static char *make_gpu_id_command_line(int numRanks, int numPmeRanks, const t_eligible_gpu_ids *gpu_ids)
762 {
763     char       *command_line, *ptr;
764     const char *flag = "-gpu_id ";
765     int         flag_length;
766
767     /* Reserve enough room for the option name, enough single-digit
768        GPU ids (since that is currently all that is possible to use
769        with mdrun), and a terminating NULL. */
770     flag_length = std::strlen(flag);
771     snew(command_line, flag_length + numRanks + 1);
772     ptr = command_line;
773
774     /* If the user has given no eligible GPU IDs, or we're trying the
775      * default behaviour, then there is nothing for g_tune_pme to give
776      * to mdrun -gpu_id */
777     if (gpu_ids->n > 0 && numPmeRanks > -1)
778     {
779         int   numPpRanks, max_num_ranks_for_each_GPU;
780         int   gpu_id, rank;
781
782         /* Write the option flag */
783         std::strcpy(ptr, flag);
784         ptr += flag_length;
785
786         numPpRanks                 = numRanks - numPmeRanks;
787         max_num_ranks_for_each_GPU = numPpRanks / gpu_ids->n;
788         if (max_num_ranks_for_each_GPU * gpu_ids->n != numPpRanks)
789         {
790             /* Some GPUs will receive more work than others, which
791              * we choose to be those with the lowest indices */
792             max_num_ranks_for_each_GPU++;
793         }
794
795         /* Loop over all eligible GPU ids */
796         for (gpu_id = 0, rank = 0; gpu_id < gpu_ids->n; gpu_id++)
797         {
798             int rank_for_this_GPU;
799             /* Loop over all PP ranks for GPU with ID gpu_id, building the
800                assignment string. */
801             for (rank_for_this_GPU = 0;
802                  rank_for_this_GPU < max_num_ranks_for_each_GPU && rank < numPpRanks;
803                  rank++, rank_for_this_GPU++)
804             {
805                 *ptr = '0' + gpu_ids->ids[gpu_id];
806                 ptr++;
807             }
808         }
809     }
810     *ptr = '\0';
811
812     return command_line;
813 }
814
815 static void launch_simulation(
816         gmx_bool                  bLaunch,        /* Should the simulation be launched? */
817         FILE                     *fp,             /* General log file */
818         gmx_bool                  bThreads,       /* whether to use threads */
819         char                     *cmd_mpirun,     /* Command for mpirun */
820         char                     *cmd_np,         /* Switch for -np or -ntmpi or empty */
821         char                     *cmd_mdrun,      /* Command for mdrun */
822         char                     *args_for_mdrun, /* Arguments for mdrun */
823         const char               *simulation_tpr, /* This tpr will be simulated */
824         int                       nnodes,         /* Number of ranks to use */
825         int                       nPMEnodes,      /* Number of PME ranks to use */
826         const t_eligible_gpu_ids *gpu_ids)        /* Struct containing GPU IDs for
827                                                    * constructing mdrun command lines */
828 {
829     char  *command, *cmd_gpu_ids;
830
831
832     /* Make enough space for the system call command,
833      * (200 extra chars for -npme ... etc. options should suffice): */
834     snew(command, std::strlen(cmd_mpirun)+std::strlen(cmd_mdrun)+std::strlen(cmd_np)+std::strlen(args_for_mdrun)+std::strlen(simulation_tpr)+200);
835
836     cmd_gpu_ids = make_gpu_id_command_line(nnodes, nPMEnodes, gpu_ids);
837
838     /* Note that the -passall options requires args_for_mdrun to be at the end
839      * of the command line string */
840     if (bThreads)
841     {
842         sprintf(command, "%s%s-npme %d -s %s %s %s",
843                 cmd_mdrun, cmd_np, nPMEnodes, simulation_tpr, args_for_mdrun, cmd_gpu_ids);
844     }
845     else
846     {
847         sprintf(command, "%s%s%s -npme %d -s %s %s %s",
848                 cmd_mpirun, cmd_np, cmd_mdrun, nPMEnodes, simulation_tpr, args_for_mdrun, cmd_gpu_ids);
849     }
850
851     fprintf(fp, "%s this command line to launch the simulation:\n\n%s", bLaunch ? "Using" : "Please use", command);
852     sep_line(fp);
853     fflush(fp);
854
855     /* Now the real thing! */
856     if (bLaunch)
857     {
858         fprintf(stdout, "\nLaunching simulation with best parameters now.\nExecuting '%s'", command);
859         sep_line(stdout);
860         fflush(stdout);
861         gmx_system_call(command);
862     }
863 }
864
865
866 static void modify_PMEsettings(
867         gmx_int64_t     simsteps,    /* Set this value as number of time steps */
868         gmx_int64_t     init_step,   /* Set this value as init_step */
869         const char     *fn_best_tpr, /* tpr file with the best performance */
870         const char     *fn_sim_tpr)  /* name of tpr file to be launched */
871 {
872     t_inputrec   *ir;
873     t_state       state;
874     gmx_mtop_t    mtop;
875     char          buf[200];
876
877     snew(ir, 1);
878     read_tpx_state(fn_best_tpr, ir, &state, &mtop);
879
880     /* Reset nsteps and init_step to the value of the input .tpr file */
881     ir->nsteps    = simsteps;
882     ir->init_step = init_step;
883
884     /* Write the tpr file which will be launched */
885     sprintf(buf, "Writing optimized simulation file %s with nsteps=%s.\n", fn_sim_tpr, "%" GMX_PRId64);
886     fprintf(stdout, buf, ir->nsteps);
887     fflush(stdout);
888     write_tpx_state(fn_sim_tpr, ir, &state, &mtop);
889
890     sfree(ir);
891 }
892
893 static gmx_bool can_scale_rvdw(int vdwtype)
894 {
895     return (evdwCUT == vdwtype ||
896             evdwPME == vdwtype);
897 }
898
899 #define EPME_SWITCHED(e) ((e) == eelPMESWITCH || (e) == eelPMEUSERSWITCH)
900
901 /* Make additional TPR files with more computational load for the
902  * direct space processors: */
903 static void make_benchmark_tprs(
904         const char     *fn_sim_tpr,      /* READ : User-provided tpr file                 */
905         char           *fn_bench_tprs[], /* WRITE: Names of benchmark tpr files           */
906         gmx_int64_t     benchsteps,      /* Number of time steps for benchmark runs       */
907         gmx_int64_t     statesteps,      /* Step counter in checkpoint file               */
908         real            rmin,            /* Minimal Coulomb radius                        */
909         real            rmax,            /* Maximal Coulomb radius                        */
910         real            bScaleRvdw,      /* Scale rvdw along with rcoulomb                */
911         int            *ntprs,           /* No. of TPRs to write, each with a different
912                                             rcoulomb and fourierspacing                   */
913         t_inputinfo    *info,            /* Contains information about mdp file options   */
914         FILE           *fp)              /* Write the output here                         */
915 {
916     int           i, j, d;
917     t_inputrec   *ir;
918     t_state       state;
919     gmx_mtop_t    mtop;
920     real          nlist_buffer;     /* Thickness of the buffer regions for PME-switch potentials */
921     char          buf[200];
922     rvec          box_size;
923     gmx_bool      bNote = FALSE;
924     real          add;              /* Add this to rcoul for the next test    */
925     real          fac = 1.0;        /* Scaling factor for Coulomb radius      */
926     real          fourierspacing;   /* Basic fourierspacing from tpr          */
927
928
929     sprintf(buf, "Making benchmark tpr file%s with %s time step%s",
930             *ntprs > 1 ? "s" : "", "%" GMX_PRId64, benchsteps > 1 ? "s" : "");
931     fprintf(stdout, buf, benchsteps);
932     if (statesteps > 0)
933     {
934         sprintf(buf, " (adding %s steps from checkpoint file)", "%" GMX_PRId64);
935         fprintf(stdout, buf, statesteps);
936         benchsteps += statesteps;
937     }
938     fprintf(stdout, ".\n");
939
940
941     snew(ir, 1);
942     read_tpx_state(fn_sim_tpr, ir, &state, &mtop);
943
944     /* Check if some kind of PME was chosen */
945     if (EEL_PME(ir->coulombtype) == FALSE)
946     {
947         gmx_fatal(FARGS, "Can only do optimizations for simulations with %s electrostatics.",
948                   EELTYPE(eelPME));
949     }
950
951     /* Check if rcoulomb == rlist, which is necessary for plain PME. */
952     if (  (ir->cutoff_scheme != ecutsVERLET) &&
953           (eelPME == ir->coulombtype) && !(ir->rcoulomb == ir->rlist))
954     {
955         gmx_fatal(FARGS, "%s requires rcoulomb (%f) to be equal to rlist (%f).",
956                   EELTYPE(eelPME), ir->rcoulomb, ir->rlist);
957     }
958     /* For other PME types, rcoulomb is allowed to be smaller than rlist */
959     else if (ir->rcoulomb > ir->rlist)
960     {
961         gmx_fatal(FARGS, "%s requires rcoulomb (%f) to be equal to or smaller than rlist (%f)",
962                   EELTYPE(ir->coulombtype), ir->rcoulomb, ir->rlist);
963     }
964
965     if (bScaleRvdw && ir->rvdw != ir->rcoulomb)
966     {
967         fprintf(stdout, "NOTE: input rvdw != rcoulomb, will not scale rvdw\n");
968         bScaleRvdw = FALSE;
969     }
970
971     /* Reduce the number of steps for the benchmarks */
972     info->orig_sim_steps = ir->nsteps;
973     ir->nsteps           = benchsteps;
974     /* We must not use init_step from the input tpr file for the benchmarks */
975     info->orig_init_step = ir->init_step;
976     ir->init_step        = 0;
977
978     /* For PME-switch potentials, keep the radial distance of the buffer region */
979     nlist_buffer   = ir->rlist - ir->rcoulomb;
980
981     /* Determine length of triclinic box vectors */
982     for (d = 0; d < DIM; d++)
983     {
984         box_size[d] = 0;
985         for (i = 0; i < DIM; i++)
986         {
987             box_size[d] += state.box[d][i]*state.box[d][i];
988         }
989         box_size[d] = std::sqrt(box_size[d]);
990     }
991
992     if (ir->fourier_spacing > 0)
993     {
994         info->fsx[0] = ir->fourier_spacing;
995         info->fsy[0] = ir->fourier_spacing;
996         info->fsz[0] = ir->fourier_spacing;
997     }
998     else
999     {
1000         /* Reconstruct fourierspacing per dimension from the number of grid points and box size */
1001         info->fsx[0] = box_size[XX]/ir->nkx;
1002         info->fsy[0] = box_size[YY]/ir->nky;
1003         info->fsz[0] = box_size[ZZ]/ir->nkz;
1004     }
1005
1006     /* If no value for the fourierspacing was provided on the command line, we
1007      * use the reconstruction from the tpr file */
1008     if (ir->fourier_spacing > 0)
1009     {
1010         /* Use the spacing from the tpr */
1011         fourierspacing = ir->fourier_spacing;
1012     }
1013     else
1014     {
1015         /* Use the maximum observed spacing */
1016         fourierspacing = std::max(std::max(info->fsx[0], info->fsy[0]), info->fsz[0]);
1017     }
1018
1019     fprintf(stdout, "Calculating PME grid points on the basis of a fourierspacing of %f nm\n", fourierspacing);
1020
1021     /* For performance comparisons the number of particles is useful to have */
1022     fprintf(fp, "   Number of particles  : %d\n", mtop.natoms);
1023
1024     /* Print information about settings of which some are potentially modified: */
1025     fprintf(fp, "   Coulomb type         : %s\n", EELTYPE(ir->coulombtype));
1026     fprintf(fp, "   Grid spacing x y z   : %f %f %f\n",
1027             box_size[XX]/ir->nkx, box_size[YY]/ir->nky, box_size[ZZ]/ir->nkz);
1028     fprintf(fp, "   Van der Waals type   : %s\n", EVDWTYPE(ir->vdwtype));
1029     if (ir_vdw_switched(ir))
1030     {
1031         fprintf(fp, "   rvdw_switch          : %f nm\n", ir->rvdw_switch);
1032     }
1033     if (EPME_SWITCHED(ir->coulombtype))
1034     {
1035         fprintf(fp, "   rlist                : %f nm\n", ir->rlist);
1036     }
1037
1038     /* Print a descriptive line about the tpr settings tested */
1039     fprintf(fp, "\nWill try these real/reciprocal workload settings:\n");
1040     fprintf(fp, " No.   scaling  rcoulomb");
1041     fprintf(fp, "  nkx  nky  nkz");
1042     fprintf(fp, "   spacing");
1043     if (can_scale_rvdw(ir->vdwtype))
1044     {
1045         fprintf(fp, "      rvdw");
1046     }
1047     if (EPME_SWITCHED(ir->coulombtype))
1048     {
1049         fprintf(fp, "     rlist");
1050     }
1051     fprintf(fp, "  tpr file\n");
1052
1053     /* Loop to create the requested number of tpr input files */
1054     for (j = 0; j < *ntprs; j++)
1055     {
1056         /* The first .tpr is the provided one, just need to modify nsteps,
1057          * so skip the following block */
1058         if (j != 0)
1059         {
1060             /* Determine which Coulomb radii rc to use in the benchmarks */
1061             add = (rmax-rmin)/(*ntprs-1);
1062             if (gmx_within_tol(rmin, info->rcoulomb[0], GMX_REAL_EPS))
1063             {
1064                 ir->rcoulomb = rmin + j*add;
1065             }
1066             else if (gmx_within_tol(rmax, info->rcoulomb[0], GMX_REAL_EPS))
1067             {
1068                 ir->rcoulomb = rmin + (j-1)*add;
1069             }
1070             else
1071             {
1072                 /* rmin != rcoul != rmax, ergo test between rmin and rmax */
1073                 add          = (rmax-rmin)/(*ntprs-2);
1074                 ir->rcoulomb = rmin + (j-1)*add;
1075             }
1076
1077             /* Determine the scaling factor fac */
1078             fac = ir->rcoulomb/info->rcoulomb[0];
1079
1080             /* Scale the Fourier grid spacing */
1081             ir->nkx = ir->nky = ir->nkz = 0;
1082             calc_grid(NULL, state.box, fourierspacing*fac, &ir->nkx, &ir->nky, &ir->nkz);
1083
1084             /* Adjust other radii since various conditions need to be fulfilled */
1085             if (eelPME == ir->coulombtype)
1086             {
1087                 /* plain PME, rcoulomb must be equal to rlist TODO only in the group scheme? */
1088                 ir->rlist = ir->rcoulomb;
1089             }
1090             else
1091             {
1092                 /* rlist must be >= rcoulomb, we keep the size of the buffer region */
1093                 ir->rlist = ir->rcoulomb + nlist_buffer;
1094             }
1095
1096             if (bScaleRvdw && can_scale_rvdw(ir->vdwtype))
1097             {
1098                 if (ecutsVERLET == ir->cutoff_scheme ||
1099                     evdwPME == ir->vdwtype)
1100                 {
1101                     /* With either the Verlet cutoff-scheme or LJ-PME,
1102                        the van der Waals radius must always equal the
1103                        Coulomb radius */
1104                     ir->rvdw = ir->rcoulomb;
1105                 }
1106                 else
1107                 {
1108                     /* For vdw cutoff, rvdw >= rlist */
1109                     ir->rvdw = std::max(info->rvdw[0], ir->rlist);
1110                 }
1111             }
1112         } /* end of "if (j != 0)" */
1113
1114         /* for j==0: Save the original settings
1115          * for j >0: Save modified radii and Fourier grids */
1116         info->rcoulomb[j]  = ir->rcoulomb;
1117         info->rvdw[j]      = ir->rvdw;
1118         info->nkx[j]       = ir->nkx;
1119         info->nky[j]       = ir->nky;
1120         info->nkz[j]       = ir->nkz;
1121         info->rlist[j]     = ir->rlist;
1122         info->fsx[j]       = fac*fourierspacing;
1123         info->fsy[j]       = fac*fourierspacing;
1124         info->fsz[j]       = fac*fourierspacing;
1125
1126         /* Write the benchmark tpr file */
1127         std::strncpy(fn_bench_tprs[j], fn_sim_tpr, std::strlen(fn_sim_tpr)-std::strlen(".tpr"));
1128         sprintf(buf, "_bench%.2d.tpr", j);
1129         std::strcat(fn_bench_tprs[j], buf);
1130         fprintf(stdout, "Writing benchmark tpr %s with nsteps=", fn_bench_tprs[j]);
1131         fprintf(stdout, "%" GMX_PRId64, ir->nsteps);
1132         if (j > 0)
1133         {
1134             fprintf(stdout, ", scaling factor %f\n", fac);
1135         }
1136         else
1137         {
1138             fprintf(stdout, ", unmodified settings\n");
1139         }
1140
1141         write_tpx_state(fn_bench_tprs[j], ir, &state, &mtop);
1142
1143         /* Write information about modified tpr settings to log file */
1144         fprintf(fp, "%4d%10f%10f", j, fac, ir->rcoulomb);
1145         fprintf(fp, "%5d%5d%5d", ir->nkx, ir->nky, ir->nkz);
1146         fprintf(fp, " %9f ", info->fsx[j]);
1147         if (can_scale_rvdw(ir->vdwtype))
1148         {
1149             fprintf(fp, "%10f", ir->rvdw);
1150         }
1151         if (EPME_SWITCHED(ir->coulombtype))
1152         {
1153             fprintf(fp, "%10f", ir->rlist);
1154         }
1155         fprintf(fp, "  %-14s\n", fn_bench_tprs[j]);
1156
1157         /* Make it clear to the user that some additional settings were modified */
1158         if (!gmx_within_tol(ir->rvdw, info->rvdw[0], GMX_REAL_EPS)
1159             || !gmx_within_tol(ir->rlist, info->rlist[0], GMX_REAL_EPS) )
1160         {
1161             bNote = TRUE;
1162         }
1163     }
1164     if (bNote)
1165     {
1166         fprintf(fp, "\nNote that in addition to the Coulomb radius and the Fourier grid\n"
1167                 "other input settings were also changed (see table above).\n"
1168                 "Please check if the modified settings are appropriate.\n");
1169     }
1170     fflush(stdout);
1171     fflush(fp);
1172     sfree(ir);
1173 }
1174
1175
1176 /* Rename the files we want to keep to some meaningful filename and
1177  * delete the rest */
1178 static void cleanup(const t_filenm *fnm, int nfile, int k, int nnodes,
1179                     int nPMEnodes, int nr, gmx_bool bKeepStderr)
1180 {
1181     char        numstring[STRLEN];
1182     char        newfilename[STRLEN];
1183     const char *fn = NULL;
1184     int         i;
1185     const char *opt;
1186
1187
1188     fprintf(stdout, "Cleaning up, deleting benchmark temp files ...\n");
1189
1190     for (i = 0; i < nfile; i++)
1191     {
1192         opt = (char *)fnm[i].opt;
1193         if (std::strcmp(opt, "-p") == 0)
1194         {
1195             /* do nothing; keep this file */
1196             ;
1197         }
1198         else if (std::strcmp(opt, "-bg") == 0)
1199         {
1200             /* Give the log file a nice name so one can later see which parameters were used */
1201             numstring[0] = '\0';
1202             if (nr > 0)
1203             {
1204                 sprintf(numstring, "_%d", nr);
1205             }
1206             sprintf(newfilename, "%s_no%d_np%d_npme%d%s", opt2fn("-bg", nfile, fnm), k, nnodes, nPMEnodes, numstring);
1207             if (gmx_fexist(opt2fn("-bg", nfile, fnm)))
1208             {
1209                 fprintf(stdout, "renaming log file to %s\n", newfilename);
1210                 make_backup(newfilename);
1211                 rename(opt2fn("-bg", nfile, fnm), newfilename);
1212             }
1213         }
1214         else if (std::strcmp(opt, "-err") == 0)
1215         {
1216             /* This file contains the output of stderr. We want to keep it in
1217              * cases where there have been problems. */
1218             fn           = opt2fn(opt, nfile, fnm);
1219             numstring[0] = '\0';
1220             if (nr > 0)
1221             {
1222                 sprintf(numstring, "_%d", nr);
1223             }
1224             sprintf(newfilename, "%s_no%d_np%d_npme%d%s", fn, k, nnodes, nPMEnodes, numstring);
1225             if (gmx_fexist(fn))
1226             {
1227                 if (bKeepStderr)
1228                 {
1229                     fprintf(stdout, "Saving stderr output in %s\n", newfilename);
1230                     make_backup(newfilename);
1231                     rename(fn, newfilename);
1232                 }
1233                 else
1234                 {
1235                     fprintf(stdout, "Deleting %s\n", fn);
1236                     remove(fn);
1237                 }
1238             }
1239         }
1240         /* Delete the files which are created for each benchmark run: (options -b*) */
1241         else if ( (0 == std::strncmp(opt, "-b", 2)) && (opt2bSet(opt, nfile, fnm) || !is_optional(&fnm[i])) )
1242         {
1243             remove_if_exists(opt2fn(opt, nfile, fnm));
1244         }
1245     }
1246 }
1247
1248
1249 enum {
1250     eNpmeAuto, eNpmeAll, eNpmeReduced, eNpmeSubset, eNpmeNr
1251 };
1252
1253 /* Create a list of numbers of PME nodes to test */
1254 static void make_npme_list(
1255         const char *npmevalues_opt, /* Make a complete list with all
1256                                      * possibilities or a short list that keeps only
1257                                      * reasonable numbers of PME nodes                  */
1258         int        *nentries,       /* Number of entries we put in the nPMEnodes list   */
1259         int        *nPMEnodes[],    /* Each entry contains the value for -npme          */
1260         int         nnodes,         /* Total number of nodes to do the tests on         */
1261         int         minPMEnodes,    /* Minimum number of PME nodes                      */
1262         int         maxPMEnodes)    /* Maximum number of PME nodes                      */
1263 {
1264     int i, npme, npp;
1265     int min_factor = 1;   /* We request that npp and npme have this minimal
1266                            * largest common factor (depends on npp)           */
1267     int nlistmax;         /* Max. list size                                   */
1268     int nlist;            /* Actual number of entries in list                 */
1269     int eNPME = 0;
1270
1271
1272     /* Do we need to check all possible values for -npme or is a reduced list enough? */
1273     if (!std::strcmp(npmevalues_opt, "all") )
1274     {
1275         eNPME = eNpmeAll;
1276     }
1277     else if (!std::strcmp(npmevalues_opt, "subset") )
1278     {
1279         eNPME = eNpmeSubset;
1280     }
1281     else /* "auto" or "range" */
1282     {
1283         if (nnodes <= 64)
1284         {
1285             eNPME = eNpmeAll;
1286         }
1287         else if (nnodes < 128)
1288         {
1289             eNPME = eNpmeReduced;
1290         }
1291         else
1292         {
1293             eNPME = eNpmeSubset;
1294         }
1295     }
1296
1297     /* Calculate how many entries we could possibly have (in case of -npme all) */
1298     if (nnodes > 2)
1299     {
1300         nlistmax = maxPMEnodes - minPMEnodes + 3;
1301         if (0 == minPMEnodes)
1302         {
1303             nlistmax--;
1304         }
1305     }
1306     else
1307     {
1308         nlistmax = 1;
1309     }
1310
1311     /* Now make the actual list which is at most of size nlist */
1312     snew(*nPMEnodes, nlistmax);
1313     nlist = 0; /* start counting again, now the real entries in the list */
1314     for (i = 0; i < nlistmax - 2; i++)
1315     {
1316         npme = maxPMEnodes - i;
1317         npp  = nnodes-npme;
1318         switch (eNPME)
1319         {
1320             case eNpmeAll:
1321                 min_factor = 1;
1322                 break;
1323             case eNpmeReduced:
1324                 min_factor = 2;
1325                 break;
1326             case eNpmeSubset:
1327                 /* For 2d PME we want a common largest factor of at least the cube
1328                  * root of the number of PP nodes */
1329                 min_factor = static_cast<int>(std::pow(npp, 1.0/3.0));
1330                 break;
1331             default:
1332                 gmx_fatal(FARGS, "Unknown option for eNPME in make_npme_list");
1333                 break;
1334         }
1335         if (gmx_greatest_common_divisor(npp, npme) >= min_factor)
1336         {
1337             (*nPMEnodes)[nlist] = npme;
1338             nlist++;
1339         }
1340     }
1341     /* We always test 0 PME nodes and the automatic number */
1342     *nentries             = nlist + 2;
1343     (*nPMEnodes)[nlist  ] =  0;
1344     (*nPMEnodes)[nlist+1] = -1;
1345
1346     fprintf(stderr, "Will try the following %d different values for -npme:\n", *nentries);
1347     for (i = 0; i < *nentries-1; i++)
1348     {
1349         fprintf(stderr, "%d, ", (*nPMEnodes)[i]);
1350     }
1351     fprintf(stderr, "and %d (auto).\n", (*nPMEnodes)[*nentries-1]);
1352 }
1353
1354
1355 /* Allocate memory to store the performance data */
1356 static void init_perfdata(t_perf *perfdata[], int ntprs, int datasets, int repeats)
1357 {
1358     int i, j, k;
1359
1360
1361     for (k = 0; k < ntprs; k++)
1362     {
1363         snew(perfdata[k], datasets);
1364         for (i = 0; i < datasets; i++)
1365         {
1366             for (j = 0; j < repeats; j++)
1367             {
1368                 snew(perfdata[k][i].Gcycles, repeats);
1369                 snew(perfdata[k][i].ns_per_day, repeats);
1370                 snew(perfdata[k][i].PME_f_load, repeats);
1371             }
1372         }
1373     }
1374 }
1375
1376
1377 /* Check for errors on mdrun -h */
1378 static void make_sure_it_runs(char *mdrun_cmd_line, int length, FILE *fp,
1379                               const t_filenm *fnm, int nfile)
1380 {
1381     char       *command, *msg;
1382     int         ret;
1383
1384     snew(command, length +  15);
1385     snew(msg, length + 500);
1386
1387     fprintf(stdout, "Making sure the benchmarks can be executed by running just 1 step...\n");
1388     sprintf(command, "%s -nsteps 1 -quiet", mdrun_cmd_line);
1389     fprintf(stdout, "Executing '%s' ...\n", command);
1390     ret = gmx_system_call(command);
1391
1392     if (0 != ret)
1393     {
1394         /* To prevent confusion, do not again issue a gmx_fatal here since we already
1395          * get the error message from mdrun itself */
1396         sprintf(msg,
1397                 "Cannot run the first benchmark simulation! Please check the error message of\n"
1398                 "mdrun for the source of the problem. Did you provide a command line\n"
1399                 "argument that neither gmx tune_pme nor mdrun understands? If you're\n"
1400                 "sure your command line should work, you can bypass this check with \n"
1401                 "gmx tune_pme -nocheck. The failing command was:\n"
1402                 "\n%s\n\n", command);
1403
1404         fprintf(stderr, "%s", msg);
1405         sep_line(fp);
1406         fprintf(fp, "%s", msg);
1407
1408         exit(ret);
1409     }
1410     fprintf(stdout, "Benchmarks can be executed!\n");
1411
1412     /* Clean up the benchmark output files we just created */
1413     fprintf(stdout, "Cleaning up ...\n");
1414     remove_if_exists(opt2fn("-bc", nfile, fnm));
1415     remove_if_exists(opt2fn("-be", nfile, fnm));
1416     remove_if_exists(opt2fn("-bcpo", nfile, fnm));
1417     remove_if_exists(opt2fn("-bg", nfile, fnm));
1418
1419     sfree(command);
1420     sfree(msg    );
1421 }
1422
1423 static void do_the_tests(
1424         FILE                     *fp,             /* General g_tune_pme output file         */
1425         char                    **tpr_names,      /* Filenames of the input files to test   */
1426         int                       maxPMEnodes,    /* Max fraction of nodes to use for PME   */
1427         int                       minPMEnodes,    /* Min fraction of nodes to use for PME   */
1428         int                       npme_fixed,     /* If >= -1, test fixed number of PME
1429                                                    * nodes only                             */
1430         const char               *npmevalues_opt, /* Which -npme values should be tested    */
1431         t_perf                  **perfdata,       /* Here the performace data is stored     */
1432         int                      *pmeentries,     /* Entries in the nPMEnodes list          */
1433         int                       repeats,        /* Repeat each test this often            */
1434         int                       nnodes,         /* Total number of nodes = nPP + nPME     */
1435         int                       nr_tprs,        /* Total number of tpr files to test      */
1436         gmx_bool                  bThreads,       /* Threads or MPI?                        */
1437         char                     *cmd_mpirun,     /* mpirun command string                  */
1438         char                     *cmd_np,         /* "-np", "-n", whatever mpirun needs     */
1439         char                     *cmd_mdrun,      /* mdrun command string                   */
1440         char                     *cmd_args_bench, /* arguments for mdrun in a string        */
1441         const t_filenm           *fnm,            /* List of filenames from command line    */
1442         int                       nfile,          /* Number of files specified on the cmdl. */
1443         int                       presteps,       /* DLB equilibration steps, is checked    */
1444         gmx_int64_t               cpt_steps,      /* Time step counter in the checkpoint    */
1445         gmx_bool                  bCheck,         /* Check whether benchmark mdrun works    */
1446         const t_eligible_gpu_ids *gpu_ids)        /* Struct containing GPU IDs for
1447                                                    * constructing mdrun command lines */
1448 {
1449     int      i, nr, k, ret, count = 0, totaltests;
1450     int     *nPMEnodes = NULL;
1451     t_perf  *pd        = NULL;
1452     int      cmdline_length;
1453     char    *command, *cmd_stub;
1454     char     buf[STRLEN];
1455     gmx_bool bResetProblem = FALSE;
1456     gmx_bool bFirst        = TRUE;
1457
1458     /* This string array corresponds to the eParselog enum type at the start
1459      * of this file */
1460     const char* ParseLog[] = {
1461         "OK.",
1462         "Logfile not found!",
1463         "No timings, logfile truncated?",
1464         "Run was terminated.",
1465         "Counters were not reset properly.",
1466         "No DD grid found for these settings.",
1467         "TPX version conflict!",
1468         "mdrun was not started in parallel!",
1469         "Number of PP ranks has a prime factor that is too large.",
1470         "The number of PP ranks did not suit the number of GPUs.",
1471         "Some GPUs were not detected or are incompatible.",
1472         "An error occured."
1473     };
1474     char        str_PME_f_load[13];
1475
1476
1477     /* Allocate space for the mdrun command line. 100 extra characters should
1478        be more than enough for the -npme etcetera arguments */
1479     cmdline_length =  std::strlen(cmd_mpirun)
1480         + std::strlen(cmd_np)
1481         + std::strlen(cmd_mdrun)
1482         + std::strlen(cmd_args_bench)
1483         + std::strlen(tpr_names[0]) + 100;
1484     snew(command, cmdline_length);
1485     snew(cmd_stub, cmdline_length);
1486
1487     /* Construct the part of the command line that stays the same for all tests: */
1488     if (bThreads)
1489     {
1490         sprintf(cmd_stub, "%s%s", cmd_mdrun, cmd_np);
1491     }
1492     else
1493     {
1494         sprintf(cmd_stub, "%s%s%s ", cmd_mpirun, cmd_np, cmd_mdrun);
1495     }
1496
1497     /* Create a list of numbers of PME nodes to test */
1498     if (npme_fixed < -1)
1499     {
1500         make_npme_list(npmevalues_opt, pmeentries, &nPMEnodes,
1501                        nnodes, minPMEnodes, maxPMEnodes);
1502     }
1503     else
1504     {
1505         *pmeentries  = 1;
1506         snew(nPMEnodes, 1);
1507         nPMEnodes[0] = npme_fixed;
1508         fprintf(stderr, "Will use a fixed number of %d PME-only ranks.\n", nPMEnodes[0]);
1509     }
1510
1511     if (0 == repeats)
1512     {
1513         fprintf(fp, "\nNo benchmarks done since number of repeats (-r) is 0.\n");
1514         gmx_ffclose(fp);
1515         finalize(opt2fn("-p", nfile, fnm));
1516         exit(0);
1517     }
1518
1519     /* Allocate one dataset for each tpr input file: */
1520     init_perfdata(perfdata, nr_tprs, *pmeentries, repeats);
1521
1522     /*****************************************/
1523     /* Main loop over all tpr files to test: */
1524     /*****************************************/
1525     totaltests = nr_tprs*(*pmeentries)*repeats;
1526     for (k = 0; k < nr_tprs; k++)
1527     {
1528         fprintf(fp, "\nIndividual timings for input file %d (%s):\n", k, tpr_names[k]);
1529         fprintf(fp, "PME ranks      Gcycles       ns/day        PME/f    Remark\n");
1530         /* Loop over various numbers of PME nodes: */
1531         for (i = 0; i < *pmeentries; i++)
1532         {
1533             char *cmd_gpu_ids = NULL;
1534
1535             pd = &perfdata[k][i];
1536
1537             cmd_gpu_ids = make_gpu_id_command_line(nnodes, nPMEnodes[i], gpu_ids);
1538
1539             /* Loop over the repeats for each scenario: */
1540             for (nr = 0; nr < repeats; nr++)
1541             {
1542                 pd->nPMEnodes = nPMEnodes[i];
1543
1544                 /* Add -npme and -s to the command line and save it. Note that
1545                  * the -passall (if set) options requires cmd_args_bench to be
1546                  * at the end of the command line string */
1547                 snew(pd->mdrun_cmd_line, cmdline_length);
1548                 sprintf(pd->mdrun_cmd_line, "%s-npme %d -s %s %s %s",
1549                         cmd_stub, pd->nPMEnodes, tpr_names[k], cmd_args_bench, cmd_gpu_ids);
1550
1551                 /* To prevent that all benchmarks fail due to a show-stopper argument
1552                  * on the mdrun command line, we make a quick check first.
1553                  * This check can be turned off in cases where the automatically chosen
1554                  * number of PME-only ranks leads to a number of PP ranks for which no
1555                  * decomposition can be found (e.g. for large prime numbers) */
1556                 if (bFirst && bCheck)
1557                 {
1558                     /* TODO This check is really for a functional
1559                      * .tpr, and if we need it, it should take place
1560                      * for every .tpr, and the logic for it should be
1561                      * immediately inside the loop over k, not in
1562                      * this inner loop. */
1563                     char *temporary_cmd_line;
1564
1565                     snew(temporary_cmd_line, cmdline_length);
1566                     /* TODO -npme 0 is more likely to succeed at low
1567                        parallelism than the default of -npme -1, but
1568                        is more likely to fail at the scaling limit
1569                        when the PP domains may be too small. "mpirun
1570                        -np 1 mdrun" is probably a reasonable thing to
1571                        do for this check, but it'll be easier to
1572                        implement that after some refactoring of how
1573                        the number of MPI ranks is managed. */
1574                     sprintf(temporary_cmd_line, "%s-npme 0 -nb cpu -s %s %s",
1575                             cmd_stub, tpr_names[k], cmd_args_bench);
1576                     make_sure_it_runs(temporary_cmd_line, cmdline_length, fp, fnm, nfile);
1577                 }
1578                 bFirst = FALSE;
1579
1580                 /* Do a benchmark simulation: */
1581                 if (repeats > 1)
1582                 {
1583                     sprintf(buf, ", pass %d/%d", nr+1, repeats);
1584                 }
1585                 else
1586                 {
1587                     buf[0] = '\0';
1588                 }
1589                 fprintf(stdout, "\n=== Progress %2.0f%%, tpr %d/%d, run %d/%d%s:\n",
1590                         (100.0*count)/totaltests,
1591                         k+1, nr_tprs, i+1, *pmeentries, buf);
1592                 make_backup(opt2fn("-err", nfile, fnm));
1593                 sprintf(command, "%s 1> /dev/null 2>%s", pd->mdrun_cmd_line, opt2fn("-err", nfile, fnm));
1594                 fprintf(stdout, "%s\n", pd->mdrun_cmd_line);
1595                 gmx_system_call(command);
1596
1597                 /* Collect the performance data from the log file; also check stderr
1598                  * for fatal errors */
1599                 ret = parse_logfile(opt2fn("-bg", nfile, fnm), opt2fn("-err", nfile, fnm),
1600                                     pd, nr, presteps, cpt_steps, nnodes);
1601                 if ((presteps > 0) && (ret == eParselogResetProblem))
1602                 {
1603                     bResetProblem = TRUE;
1604                 }
1605
1606                 if (-1 == pd->nPMEnodes)
1607                 {
1608                     sprintf(buf, "(%3d)", pd->guessPME);
1609                 }
1610                 else
1611                 {
1612                     sprintf(buf, "     ");
1613                 }
1614
1615                 /* Nicer output */
1616                 if (pd->PME_f_load[nr] > 0.0)
1617                 {
1618                     sprintf(str_PME_f_load, "%12.3f", pd->PME_f_load[nr]);
1619                 }
1620                 else
1621                 {
1622                     sprintf(str_PME_f_load, "%s", "         -  ");
1623                 }
1624
1625                 /* Write the data we got to disk */
1626                 fprintf(fp, "%4d%s %12.3f %12.3f %s    %s", pd->nPMEnodes,
1627                         buf, pd->Gcycles[nr], pd->ns_per_day[nr], str_PME_f_load, ParseLog[ret]);
1628                 if (!(ret == eParselogOK || ret == eParselogNoDDGrid || ret == eParselogNotFound) )
1629                 {
1630                     fprintf(fp, " Check %s file for problems.", ret == eParselogFatal ? "err" : "log");
1631                 }
1632                 fprintf(fp, "\n");
1633                 fflush(fp);
1634                 count++;
1635
1636                 /* Do some cleaning up and delete the files we do not need any more */
1637                 cleanup(fnm, nfile, k, nnodes, pd->nPMEnodes, nr, ret == eParselogFatal);
1638
1639                 /* If the first run with this number of processors already failed, do not try again: */
1640                 if (pd->Gcycles[0] <= 0.0 && repeats > 1)
1641                 {
1642                     fprintf(stdout, "Skipping remaining passes of unsuccessful setting, see log file for details.\n");
1643                     count += repeats-(nr+1);
1644                     break;
1645                 }
1646             } /* end of repeats loop */
1647             sfree(cmd_gpu_ids);
1648         }     /* end of -npme loop */
1649     }         /* end of tpr file loop */
1650
1651     if (bResetProblem)
1652     {
1653         sep_line(fp);
1654         fprintf(fp, "WARNING: The cycle and time step counters could not be reset properly. ");
1655         sep_line(fp);
1656     }
1657     sfree(command);
1658     sfree(cmd_stub);
1659 }
1660
1661
1662 static void check_input(
1663         int             nnodes,
1664         int             repeats,
1665         int            *ntprs,
1666         real           *rmin,
1667         real            rcoulomb,
1668         real           *rmax,
1669         real            maxPMEfraction,
1670         real            minPMEfraction,
1671         int             npme_fixed,
1672         gmx_int64_t     bench_nsteps,
1673         const t_filenm *fnm,
1674         int             nfile,
1675         int             sim_part,
1676         int             presteps,
1677         int             npargs,
1678         t_pargs        *pa)
1679 {
1680     int old;
1681
1682
1683     /* Make sure the input file exists */
1684     if (!gmx_fexist(opt2fn("-s", nfile, fnm)))
1685     {
1686         gmx_fatal(FARGS, "File %s not found.", opt2fn("-s", nfile, fnm));
1687     }
1688
1689     /* Make sure that the checkpoint file is not overwritten during benchmarking */
1690     if ( (0 == std::strcmp(opt2fn("-cpi", nfile, fnm), opt2fn("-bcpo", nfile, fnm)) ) && (sim_part > 1) )
1691     {
1692         gmx_fatal(FARGS, "Checkpoint input (-cpi) and benchmark checkpoint output (-bcpo) files must not be identical.\n"
1693                   "The checkpoint input file must not be overwritten during the benchmarks.\n");
1694     }
1695
1696     /* Make sure that repeats is >= 0 (if == 0, only write tpr files) */
1697     if (repeats < 0)
1698     {
1699         gmx_fatal(FARGS, "Number of repeats < 0!");
1700     }
1701
1702     /* Check number of nodes */
1703     if (nnodes < 1)
1704     {
1705         gmx_fatal(FARGS, "Number of ranks/threads must be a positive integer.");
1706     }
1707
1708     /* Automatically choose -ntpr if not set */
1709     if (*ntprs < 1)
1710     {
1711         if (nnodes < 16)
1712         {
1713             *ntprs = 1;
1714         }
1715         else
1716         {
1717             *ntprs = 3;
1718             /* Set a reasonable scaling factor for rcoulomb */
1719             if (*rmax <= 0)
1720             {
1721                 *rmax = rcoulomb * 1.2;
1722             }
1723         }
1724         fprintf(stderr, "Will test %d tpr file%s.\n", *ntprs, *ntprs == 1 ? "" : "s");
1725     }
1726     else
1727     {
1728         if (1 == *ntprs)
1729         {
1730             fprintf(stderr, "Note: Choose ntpr>1 to shift PME load between real and reciprocal space.\n");
1731         }
1732     }
1733
1734     /* Make shure that rmin <= rcoulomb <= rmax */
1735     if (*rmin <= 0)
1736     {
1737         *rmin = rcoulomb;
1738     }
1739     if (*rmax <= 0)
1740     {
1741         *rmax = rcoulomb;
1742     }
1743     if (!(*rmin <= *rmax) )
1744     {
1745         gmx_fatal(FARGS, "Please choose the Coulomb radii such that rmin <= rmax.\n"
1746                   "rmin = %g, rmax = %g, actual rcoul from .tpr file = %g\n", *rmin, *rmax, rcoulomb);
1747     }
1748     /* Add test scenarios if rmin or rmax were set */
1749     if (*ntprs <= 2)
1750     {
1751         if (!gmx_within_tol(*rmin, rcoulomb, GMX_REAL_EPS) && (*ntprs == 1) )
1752         {
1753             (*ntprs)++;
1754             fprintf(stderr, "NOTE: Setting -rmin to %g changed -ntpr to %d\n",
1755                     *rmin, *ntprs);
1756         }
1757         if (!gmx_within_tol(*rmax, rcoulomb, GMX_REAL_EPS) && (*ntprs == 1) )
1758         {
1759             (*ntprs)++;
1760             fprintf(stderr, "NOTE: Setting -rmax to %g changed -ntpr to %d\n",
1761                     *rmax, *ntprs);
1762         }
1763     }
1764     old = *ntprs;
1765     /* If one of rmin, rmax is set, we need 2 tpr files at minimum */
1766     if (!gmx_within_tol(*rmax, rcoulomb, GMX_REAL_EPS) || !gmx_within_tol(*rmin, rcoulomb, GMX_REAL_EPS) )
1767     {
1768         *ntprs = std::max(*ntprs, 2);
1769     }
1770
1771     /* If both rmin, rmax are set, we need 3 tpr files at minimum */
1772     if (!gmx_within_tol(*rmax, rcoulomb, GMX_REAL_EPS) && !gmx_within_tol(*rmin, rcoulomb, GMX_REAL_EPS) )
1773     {
1774         *ntprs = std::max(*ntprs, 3);
1775     }
1776
1777     if (old != *ntprs)
1778     {
1779         fprintf(stderr, "NOTE: Your rmin, rmax setting changed -ntpr to %d\n", *ntprs);
1780     }
1781
1782     if (*ntprs > 1)
1783     {
1784         if (gmx_within_tol(*rmin, rcoulomb, GMX_REAL_EPS) && gmx_within_tol(rcoulomb, *rmax, GMX_REAL_EPS)) /* We have just a single rc */
1785         {
1786             fprintf(stderr, "WARNING: Resetting -ntpr to 1 since no Coulomb radius scaling is requested.\n"
1787                     "Please set rmin < rmax to test Coulomb radii in the [rmin, rmax] interval\n"
1788                     "with correspondingly adjusted PME grid settings\n");
1789             *ntprs = 1;
1790         }
1791     }
1792
1793     /* Check whether max and min fraction are within required values */
1794     if (maxPMEfraction > 0.5 || maxPMEfraction < 0)
1795     {
1796         gmx_fatal(FARGS, "-max must be between 0 and 0.5");
1797     }
1798     if (minPMEfraction > 0.5 || minPMEfraction < 0)
1799     {
1800         gmx_fatal(FARGS, "-min must be between 0 and 0.5");
1801     }
1802     if (maxPMEfraction < minPMEfraction)
1803     {
1804         gmx_fatal(FARGS, "-max must be larger or equal to -min");
1805     }
1806
1807     /* Check whether the number of steps - if it was set - has a reasonable value */
1808     if (bench_nsteps < 0)
1809     {
1810         gmx_fatal(FARGS, "Number of steps must be positive.");
1811     }
1812
1813     if (bench_nsteps > 10000 || bench_nsteps < 100)
1814     {
1815         fprintf(stderr, "WARNING: steps=");
1816         fprintf(stderr, "%" GMX_PRId64, bench_nsteps);
1817         fprintf(stderr, ". Are you sure you want to perform so %s steps for each benchmark?\n", (bench_nsteps < 100) ? "few" : "many");
1818     }
1819
1820     if (presteps < 0)
1821     {
1822         gmx_fatal(FARGS, "Cannot have a negative number of presteps.\n");
1823     }
1824
1825     /* Check for rcoulomb scaling if more than one .tpr file is tested */
1826     if (*ntprs > 1)
1827     {
1828         if (*rmin/rcoulomb < 0.75 || *rmax/rcoulomb > 1.25)
1829         {
1830             fprintf(stderr, "WARNING: Applying extreme scaling factor. I hope you know what you are doing.\n");
1831         }
1832     }
1833
1834     /* If a fixed number of PME nodes is set we do rcoulomb and PME gird tuning
1835      * only. We need to check whether the requested number of PME-only nodes
1836      * makes sense. */
1837     if (npme_fixed > -1)
1838     {
1839         /* No more than 50% of all nodes can be assigned as PME-only nodes. */
1840         if (2*npme_fixed > nnodes)
1841         {
1842             gmx_fatal(FARGS, "Cannot have more than %d PME-only ranks for a total of %d ranks (you chose %d).\n",
1843                       nnodes/2, nnodes, npme_fixed);
1844         }
1845         if ((npme_fixed > 0) && (5*npme_fixed < nnodes))
1846         {
1847             fprintf(stderr, "WARNING: Only %g percent of the ranks are assigned as PME-only ranks.\n",
1848                     (100.0*npme_fixed)/nnodes);
1849         }
1850         if (opt2parg_bSet("-min", npargs, pa) || opt2parg_bSet("-max", npargs, pa))
1851         {
1852             fprintf(stderr, "NOTE: The -min, -max, and -npme options have no effect when a\n"
1853                     "      fixed number of PME-only ranks is requested with -fix.\n");
1854         }
1855     }
1856 }
1857
1858
1859 /* Returns TRUE when "opt" is needed at launch time */
1860 static gmx_bool is_launch_file(char *opt, gmx_bool bSet)
1861 {
1862     if (0 == std::strncmp(opt, "-swap", 5))
1863     {
1864         return bSet;
1865     }
1866
1867     /* Apart from the input .tpr and the output log files we need all options that
1868      * were set on the command line and that do not start with -b */
1869     if    (0 == std::strncmp(opt, "-b", 2) || 0 == std::strncmp(opt, "-s", 2)
1870            || 0 == std::strncmp(opt, "-err", 4) || 0 == std::strncmp(opt, "-p", 2) )
1871     {
1872         return FALSE;
1873     }
1874
1875     return bSet;
1876 }
1877
1878
1879 /* Returns TRUE when "opt" defines a file which is needed for the benchmarks runs */
1880 static gmx_bool is_bench_file(char *opt, gmx_bool bSet, gmx_bool bOptional, gmx_bool bIsOutput)
1881 {
1882     /* Apart from the input .tpr, all files starting with "-b" are for
1883      * _b_enchmark files exclusively */
1884     if (0 == std::strncmp(opt, "-s", 2))
1885     {
1886         return FALSE;
1887     }
1888
1889     if (0 == std::strncmp(opt, "-b", 2) || 0 == std::strncmp(opt, "-s", 2))
1890     {
1891         if (!bOptional || bSet)
1892         {
1893             return TRUE;
1894         }
1895         else
1896         {
1897             return FALSE;
1898         }
1899     }
1900     else
1901     {
1902         if (bIsOutput)
1903         {
1904             return FALSE;
1905         }
1906         else
1907         {
1908             if (bSet) /* These are additional input files like -cpi -ei */
1909             {
1910                 return TRUE;
1911             }
1912             else
1913             {
1914                 return FALSE;
1915             }
1916         }
1917     }
1918 }
1919
1920
1921 /* Adds 'buf' to 'str' */
1922 static void add_to_string(char **str, const char *buf)
1923 {
1924     int len;
1925
1926
1927     len = std::strlen(*str) + std::strlen(buf) + 1;
1928     srenew(*str, len);
1929     std::strcat(*str, buf);
1930 }
1931
1932
1933 /* Create the command line for the benchmark as well as for the real run */
1934 static void create_command_line_snippets(
1935         gmx_bool  bAppendFiles,
1936         gmx_bool  bKeepAndNumCPT,
1937         gmx_bool  bResetHWay,
1938         int       presteps,
1939         int       nfile,
1940         t_filenm  fnm[],
1941         char     *cmd_args_bench[],  /* command line arguments for benchmark runs */
1942         char     *cmd_args_launch[], /* command line arguments for simulation run */
1943         char      extra_args[])      /* Add this to the end of the command line */
1944 {
1945     int         i;
1946     char       *opt;
1947     const char *name;
1948     char        strbuf[STRLEN];
1949
1950
1951     /* strlen needs at least '\0' as a string: */
1952     snew(*cmd_args_bench, 1);
1953     snew(*cmd_args_launch, 1);
1954     *cmd_args_launch[0] = '\0';
1955     *cmd_args_bench[0]  = '\0';
1956
1957
1958     /*******************************************/
1959     /* 1. Process other command line arguments */
1960     /*******************************************/
1961     if (presteps > 0)
1962     {
1963         /* Add equilibration steps to benchmark options */
1964         sprintf(strbuf, "-resetstep %d ", presteps);
1965         add_to_string(cmd_args_bench, strbuf);
1966     }
1967     /* These switches take effect only at launch time */
1968     if (FALSE == bAppendFiles)
1969     {
1970         add_to_string(cmd_args_launch, "-noappend ");
1971     }
1972     if (bKeepAndNumCPT)
1973     {
1974         add_to_string(cmd_args_launch, "-cpnum ");
1975     }
1976     if (bResetHWay)
1977     {
1978         add_to_string(cmd_args_launch, "-resethway ");
1979     }
1980
1981     /********************/
1982     /* 2. Process files */
1983     /********************/
1984     for (i = 0; i < nfile; i++)
1985     {
1986         opt  = (char *)fnm[i].opt;
1987         name = opt2fn(opt, nfile, fnm);
1988
1989         /* Strbuf contains the options, now let's sort out where we need that */
1990         sprintf(strbuf, "%s %s ", opt, name);
1991
1992         if (is_bench_file(opt, opt2bSet(opt, nfile, fnm), is_optional(&fnm[i]), is_output(&fnm[i])) )
1993         {
1994             /* All options starting with -b* need the 'b' removed,
1995              * therefore overwrite strbuf */
1996             if (0 == std::strncmp(opt, "-b", 2))
1997             {
1998                 sprintf(strbuf, "-%s %s ", &opt[2], name);
1999             }
2000
2001             add_to_string(cmd_args_bench, strbuf);
2002         }
2003
2004         if (is_launch_file(opt, opt2bSet(opt, nfile, fnm)) )
2005         {
2006             add_to_string(cmd_args_launch, strbuf);
2007         }
2008     }
2009
2010     add_to_string(cmd_args_bench, extra_args);
2011     add_to_string(cmd_args_launch, extra_args);
2012 }
2013
2014
2015 /* Set option opt */
2016 static void setopt(const char *opt, int nfile, t_filenm fnm[])
2017 {
2018     int i;
2019
2020     for (i = 0; (i < nfile); i++)
2021     {
2022         if (std::strcmp(opt, fnm[i].opt) == 0)
2023         {
2024             fnm[i].flag |= ffSET;
2025         }
2026     }
2027 }
2028
2029
2030 /* This routine inspects the tpr file and ...
2031  * 1. checks for output files that get triggered by a tpr option. These output
2032  *    files are marked as 'set' to allow for a proper cleanup after each
2033  *    tuning run.
2034  * 2. returns the PME:PP load ratio
2035  * 3. returns rcoulomb from the tpr */
2036 static float inspect_tpr(int nfile, t_filenm fnm[], real *rcoulomb)
2037 {
2038     gmx_bool     bTpi;      /* Is test particle insertion requested?          */
2039     gmx_bool     bFree;     /* Is a free energy simulation requested?         */
2040     gmx_bool     bNM;       /* Is a normal mode analysis requested?           */
2041     gmx_bool     bSwap;     /* Is water/ion position swapping requested?      */
2042     t_inputrec   ir;
2043     t_state      state;
2044     gmx_mtop_t   mtop;
2045
2046
2047     /* Check tpr file for options that trigger extra output files */
2048     read_tpx_state(opt2fn("-s", nfile, fnm), &ir, &state, &mtop);
2049     bFree = (efepNO  != ir.efep );
2050     bNM   = (eiNM    == ir.eI   );
2051     bSwap = (eswapNO != ir.eSwapCoords);
2052     bTpi  = EI_TPI(ir.eI);
2053
2054     /* Set these output files on the tuning command-line */
2055     if (ir.bPull)
2056     {
2057         setopt("-pf", nfile, fnm);
2058         setopt("-px", nfile, fnm);
2059     }
2060     if (bFree)
2061     {
2062         setopt("-dhdl", nfile, fnm);
2063     }
2064     if (bTpi)
2065     {
2066         setopt("-tpi", nfile, fnm);
2067         setopt("-tpid", nfile, fnm);
2068     }
2069     if (bNM)
2070     {
2071         setopt("-mtx", nfile, fnm);
2072     }
2073     if (bSwap)
2074     {
2075         setopt("-swap", nfile, fnm);
2076     }
2077
2078     *rcoulomb = ir.rcoulomb;
2079
2080     /* Return the estimate for the number of PME nodes */
2081     return pme_load_estimate(&mtop, &ir, state.box);
2082 }
2083
2084
2085 static void couple_files_options(int nfile, t_filenm fnm[])
2086 {
2087     int      i;
2088     gmx_bool bSet, bBench;
2089     char    *opt;
2090     char     buf[20];
2091
2092
2093     for (i = 0; i < nfile; i++)
2094     {
2095         opt    = (char *)fnm[i].opt;
2096         bSet   = ((fnm[i].flag & ffSET) != 0);
2097         bBench = (0 == std::strncmp(opt, "-b", 2));
2098
2099         /* Check optional files */
2100         /* If e.g. -eo is set, then -beo also needs to be set */
2101         if (is_optional(&fnm[i]) && bSet && !bBench)
2102         {
2103             sprintf(buf, "-b%s", &opt[1]);
2104             setopt(buf, nfile, fnm);
2105         }
2106         /* If -beo is set, then -eo also needs to be! */
2107         if (is_optional(&fnm[i]) && bSet && bBench)
2108         {
2109             sprintf(buf, "-%s", &opt[2]);
2110             setopt(buf, nfile, fnm);
2111         }
2112     }
2113 }
2114
2115
2116 #define BENCHSTEPS (1000)
2117
2118 int gmx_tune_pme(int argc, char *argv[])
2119 {
2120     const char     *desc[] = {
2121         "For a given number [TT]-np[tt] or [TT]-ntmpi[tt] of ranks, [THISMODULE] systematically",
2122         "times [gmx-mdrun] with various numbers of PME-only ranks and determines",
2123         "which setting is fastest. It will also test whether performance can",
2124         "be enhanced by shifting load from the reciprocal to the real space",
2125         "part of the Ewald sum. ",
2126         "Simply pass your [REF].tpr[ref] file to [THISMODULE] together with other options",
2127         "for [gmx-mdrun] as needed.[PAR]",
2128         "[THISMODULE] needs to call [gmx-mdrun] and so requires that you",
2129         "specify how to call mdrun with the argument to the [TT]-mdrun[tt]",
2130         "parameter. Depending how you have built GROMACS, values such as",
2131         "'gmx mdrun', 'gmx_d mdrun', or 'mdrun_mpi' might be needed.[PAR]",
2132         "The program that runs MPI programs can be set in the environment variable",
2133         "MPIRUN (defaults to 'mpirun'). Note that for certain MPI frameworks,",
2134         "you need to provide a machine- or hostfile. This can also be passed",
2135         "via the MPIRUN variable, e.g.[PAR]",
2136         "[TT]export MPIRUN=\"/usr/local/mpirun -machinefile hosts\"[tt]",
2137         "Note that in such cases it is normally necessary to compile",
2138         "and/or run [THISMODULE] without MPI support, so that it can call",
2139         "the MPIRUN program.[PAR]",
2140         "Before doing the actual benchmark runs, [THISMODULE] will do a quick",
2141         "check whether [gmx-mdrun] works as expected with the provided parallel settings",
2142         "if the [TT]-check[tt] option is activated (the default).",
2143         "Please call [THISMODULE] with the normal options you would pass to",
2144         "[gmx-mdrun] and add [TT]-np[tt] for the number of ranks to perform the",
2145         "tests on, or [TT]-ntmpi[tt] for the number of threads. You can also add [TT]-r[tt]",
2146         "to repeat each test several times to get better statistics. [PAR]",
2147         "[THISMODULE] can test various real space / reciprocal space workloads",
2148         "for you. With [TT]-ntpr[tt] you control how many extra [REF].tpr[ref] files will be",
2149         "written with enlarged cutoffs and smaller Fourier grids respectively.",
2150         "Typically, the first test (number 0) will be with the settings from the input",
2151         "[REF].tpr[ref] file; the last test (number [TT]ntpr[tt]) will have the Coulomb cutoff",
2152         "specified by [TT]-rmax[tt] with a somewhat smaller PME grid at the same time. ",
2153         "In this last test, the Fourier spacing is multiplied with [TT]rmax[tt]/rcoulomb. ",
2154         "The remaining [REF].tpr[ref] files will have equally-spaced Coulomb radii (and Fourier "
2155         "spacings) between these extremes. [BB]Note[bb] that you can set [TT]-ntpr[tt] to 1",
2156         "if you just seek the optimal number of PME-only ranks; in that case",
2157         "your input [REF].tpr[ref] file will remain unchanged.[PAR]",
2158         "For the benchmark runs, the default of 1000 time steps should suffice for most",
2159         "MD systems. The dynamic load balancing needs about 100 time steps",
2160         "to adapt to local load imbalances, therefore the time step counters",
2161         "are by default reset after 100 steps. For large systems (>1M atoms), as well as ",
2162         "for a higher accuracy of the measurements, you should set [TT]-resetstep[tt] to a higher value.",
2163         "From the 'DD' load imbalance entries in the md.log output file you",
2164         "can tell after how many steps the load is sufficiently balanced. Example call:[PAR]"
2165         "[TT]gmx tune_pme -np 64 -s protein.tpr -launch[tt][PAR]",
2166         "After calling [gmx-mdrun] several times, detailed performance information",
2167         "is available in the output file [TT]perf.out[tt].",
2168         "[BB]Note[bb] that during the benchmarks, a couple of temporary files are written",
2169         "(options [TT]-b*[tt]), these will be automatically deleted after each test.[PAR]",
2170         "If you want the simulation to be started automatically with the",
2171         "optimized parameters, use the command line option [TT]-launch[tt].[PAR]",
2172         "Basic support for GPU-enabled [TT]mdrun[tt] exists. Give a string containing the IDs",
2173         "of the GPUs that you wish to use in the optimization in the [TT]-gpu_id[tt]",
2174         "command-line argument. Unlike [TT]mdrun -gpu_id[tt], this does not imply a mapping",
2175         "but merely the eligible set. [TT]g_tune_pme[tt] will construct calls to",
2176         "mdrun that use this set appropriately, assuming that PP ranks with low indices",
2177         "should map to GPUs with low indices, and increasing both monotonically",
2178         "over the respective sets.[PAR]",
2179     };
2180
2181     int             nnodes         = 1;
2182     int             repeats        = 2;
2183     int             pmeentries     = 0; /* How many values for -npme do we actually test for each tpr file */
2184     real            maxPMEfraction = 0.50;
2185     real            minPMEfraction = 0.25;
2186     int             maxPMEnodes, minPMEnodes;
2187     float           guessPMEratio;                    /* guessed PME:PP ratio based on the tpr file */
2188     float           guessPMEnodes;
2189     int             npme_fixed     = -2;              /* If >= -1, use only this number
2190                                                        * of PME-only nodes                */
2191     int             ntprs          = 0;
2192     real            rmin           = 0.0, rmax = 0.0; /* min and max value for rcoulomb if scaling is requested */
2193     real            rcoulomb       = -1.0;            /* Coulomb radius as set in .tpr file */
2194     gmx_bool        bScaleRvdw     = TRUE;
2195     gmx_int64_t     bench_nsteps   = BENCHSTEPS;
2196     gmx_int64_t     new_sim_nsteps = -1;  /* -1 indicates: not set by the user */
2197     gmx_int64_t     cpt_steps      = 0;   /* Step counter in .cpt input file   */
2198     int             presteps       = 100; /* Do a full cycle reset after presteps steps */
2199     gmx_bool        bOverwrite     = FALSE, bKeepTPR;
2200     gmx_bool        bLaunch        = FALSE;
2201     char           *ExtraArgs      = NULL;
2202     char          **tpr_names      = NULL;
2203     const char     *simulation_tpr = NULL;
2204     int             best_npme, best_tpr;
2205     int             sim_part = 1; /* For benchmarks with checkpoint files */
2206     char            bbuf[STRLEN];
2207
2208
2209     /* Default program names if nothing else is found */
2210     char               *cmd_mpirun = NULL, *cmd_mdrun = NULL;
2211     char               *cmd_args_bench, *cmd_args_launch;
2212     char               *cmd_np           = NULL;
2213
2214     /* IDs of GPUs that are eligible for computation */
2215     char               *eligible_gpu_ids = NULL;
2216     t_eligible_gpu_ids *gpu_ids          = NULL;
2217
2218     t_perf            **perfdata = NULL;
2219     t_inputinfo        *info;
2220     int                 i;
2221     FILE               *fp;
2222
2223     /* Print out how long the tuning took */
2224     double          seconds;
2225
2226     static t_filenm fnm[] = {
2227         /* g_tune_pme */
2228         { efOUT, "-p",      "perf",     ffWRITE },
2229         { efLOG, "-err",    "bencherr", ffWRITE },
2230         { efTPR, "-so",     "tuned",    ffWRITE },
2231         /* mdrun: */
2232         { efTPR, NULL,      NULL,       ffREAD },
2233         { efTRN, "-o",      NULL,       ffWRITE },
2234         { efCOMPRESSED, "-x", NULL,     ffOPTWR },
2235         { efCPT, "-cpi",    NULL,       ffOPTRD },
2236         { efCPT, "-cpo",    NULL,       ffOPTWR },
2237         { efSTO, "-c",      "confout",  ffWRITE },
2238         { efEDR, "-e",      "ener",     ffWRITE },
2239         { efLOG, "-g",      "md",       ffWRITE },
2240         { efXVG, "-dhdl",   "dhdl",     ffOPTWR },
2241         { efXVG, "-field",  "field",    ffOPTWR },
2242         { efXVG, "-table",  "table",    ffOPTRD },
2243         { efXVG, "-tablep", "tablep",   ffOPTRD },
2244         { efXVG, "-tableb", "table",    ffOPTRD },
2245         { efTRX, "-rerun",  "rerun",    ffOPTRD },
2246         { efXVG, "-tpi",    "tpi",      ffOPTWR },
2247         { efXVG, "-tpid",   "tpidist",  ffOPTWR },
2248         { efEDI, "-ei",     "sam",      ffOPTRD },
2249         { efXVG, "-eo",     "edsam",    ffOPTWR },
2250         { efXVG, "-devout", "deviatie", ffOPTWR },
2251         { efXVG, "-runav",  "runaver",  ffOPTWR },
2252         { efXVG, "-px",     "pullx",    ffOPTWR },
2253         { efXVG, "-pf",     "pullf",    ffOPTWR },
2254         { efXVG, "-ro",     "rotation", ffOPTWR },
2255         { efLOG, "-ra",     "rotangles", ffOPTWR },
2256         { efLOG, "-rs",     "rotslabs", ffOPTWR },
2257         { efLOG, "-rt",     "rottorque", ffOPTWR },
2258         { efMTX, "-mtx",    "nm",       ffOPTWR },
2259         { efNDX, "-dn",     "dipole",   ffOPTWR },
2260         { efXVG, "-swap",   "swapions", ffOPTWR },
2261         /* Output files that are deleted after each benchmark run */
2262         { efTRN, "-bo",     "bench",    ffWRITE },
2263         { efXTC, "-bx",     "bench",    ffWRITE },
2264         { efCPT, "-bcpo",   "bench",    ffWRITE },
2265         { efSTO, "-bc",     "bench",    ffWRITE },
2266         { efEDR, "-be",     "bench",    ffWRITE },
2267         { efLOG, "-bg",     "bench",    ffWRITE },
2268         { efXVG, "-beo",    "benchedo", ffOPTWR },
2269         { efXVG, "-bdhdl",  "benchdhdl", ffOPTWR },
2270         { efXVG, "-bfield", "benchfld", ffOPTWR },
2271         { efXVG, "-btpi",   "benchtpi", ffOPTWR },
2272         { efXVG, "-btpid",  "benchtpid", ffOPTWR },
2273         { efXVG, "-bdevout", "benchdev", ffOPTWR },
2274         { efXVG, "-brunav", "benchrnav", ffOPTWR },
2275         { efXVG, "-bpx",    "benchpx",  ffOPTWR },
2276         { efXVG, "-bpf",    "benchpf",  ffOPTWR },
2277         { efXVG, "-bro",    "benchrot", ffOPTWR },
2278         { efLOG, "-bra",    "benchrota", ffOPTWR },
2279         { efLOG, "-brs",    "benchrots", ffOPTWR },
2280         { efLOG, "-brt",    "benchrott", ffOPTWR },
2281         { efMTX, "-bmtx",   "benchn",   ffOPTWR },
2282         { efNDX, "-bdn",    "bench",    ffOPTWR },
2283         { efXVG, "-bswap",  "benchswp", ffOPTWR }
2284     };
2285
2286     gmx_bool        bThreads     = FALSE;
2287
2288     int             nthreads = 1;
2289
2290     const char     *procstring[] =
2291     { NULL, "-np", "-n", "none", NULL };
2292     const char     *npmevalues_opt[] =
2293     { NULL, "auto", "all", "subset", NULL };
2294
2295     gmx_bool          bAppendFiles          = TRUE;
2296     gmx_bool          bKeepAndNumCPT        = FALSE;
2297     gmx_bool          bResetCountersHalfWay = FALSE;
2298     gmx_bool          bBenchmark            = TRUE;
2299     gmx_bool          bCheck                = TRUE;
2300
2301     gmx_output_env_t *oenv = NULL;
2302
2303     t_pargs           pa[] = {
2304         /***********************/
2305         /* g_tune_pme options: */
2306         /***********************/
2307         { "-mdrun",    FALSE, etSTR,  {&cmd_mdrun},
2308           "Command line to run a simulation, e.g. 'gmx mdrun' or 'mdrun_mpi'" },
2309         { "-np",       FALSE, etINT,  {&nnodes},
2310           "Number of ranks to run the tests on (must be > 2 for separate PME ranks)" },
2311         { "-npstring", FALSE, etENUM, {procstring},
2312           "Specify the number of ranks to [TT]$MPIRUN[tt] using this string"},
2313         { "-ntmpi",    FALSE, etINT,  {&nthreads},
2314           "Number of MPI-threads to run the tests on (turns MPI & mpirun off)"},
2315         { "-r",        FALSE, etINT,  {&repeats},
2316           "Repeat each test this often" },
2317         { "-max",      FALSE, etREAL, {&maxPMEfraction},
2318           "Max fraction of PME ranks to test with" },
2319         { "-min",      FALSE, etREAL, {&minPMEfraction},
2320           "Min fraction of PME ranks to test with" },
2321         { "-npme",     FALSE, etENUM, {npmevalues_opt},
2322           "Within -min and -max, benchmark all possible values for [TT]-npme[tt], or just a reasonable subset. "
2323           "Auto neglects -min and -max and chooses reasonable values around a guess for npme derived from the .tpr"},
2324         { "-fix",      FALSE, etINT,  {&npme_fixed},
2325           "If >= -1, do not vary the number of PME-only ranks, instead use this fixed value and only vary rcoulomb and the PME grid spacing."},
2326         { "-rmax",     FALSE, etREAL, {&rmax},
2327           "If >0, maximal rcoulomb for -ntpr>1 (rcoulomb upscaling results in fourier grid downscaling)" },
2328         { "-rmin",     FALSE, etREAL, {&rmin},
2329           "If >0, minimal rcoulomb for -ntpr>1" },
2330         { "-scalevdw",  FALSE, etBOOL, {&bScaleRvdw},
2331           "Scale rvdw along with rcoulomb"},
2332         { "-ntpr",     FALSE, etINT,  {&ntprs},
2333           "Number of [REF].tpr[ref] files to benchmark. Create this many files with different rcoulomb scaling factors depending on -rmin and -rmax. "
2334           "If < 1, automatically choose the number of [REF].tpr[ref] files to test" },
2335         { "-steps",    FALSE, etINT64, {&bench_nsteps},
2336           "Take timings for this many steps in the benchmark runs" },
2337         { "-resetstep", FALSE, etINT,  {&presteps},
2338           "Let dlb equilibrate this many steps before timings are taken (reset cycle counters after this many steps)" },
2339         { "-nsteps",   FALSE, etINT64, {&new_sim_nsteps},
2340           "If non-negative, perform this many steps in the real run (overwrites nsteps from [REF].tpr[ref], add [REF].cpt[ref] steps)" },
2341         { "-launch",   FALSE, etBOOL, {&bLaunch},
2342           "Launch the real simulation after optimization" },
2343         { "-bench",    FALSE, etBOOL, {&bBenchmark},
2344           "Run the benchmarks or just create the input [REF].tpr[ref] files?" },
2345         { "-check",    FALSE, etBOOL, {&bCheck},
2346           "Before the benchmark runs, check whether mdrun works in parallel" },
2347         { "-gpu_id",   FALSE, etSTR,  {&eligible_gpu_ids},
2348           "List of GPU device id-s that are eligible for use (unlike mdrun, does not imply any mapping)" },
2349         /******************/
2350         /* mdrun options: */
2351         /******************/
2352         /* We let g_tune_pme parse and understand these options, because we need to
2353          * prevent that they appear on the mdrun command line for the benchmarks */
2354         { "-append",   FALSE, etBOOL, {&bAppendFiles},
2355           "Append to previous output files when continuing from checkpoint instead of adding the simulation part number to all file names (for launch only)" },
2356         { "-cpnum",    FALSE, etBOOL, {&bKeepAndNumCPT},
2357           "Keep and number checkpoint files (launch only)" },
2358         { "-resethway", FALSE, etBOOL, {&bResetCountersHalfWay},
2359           "HIDDENReset the cycle counters after half the number of steps or halfway [TT]-maxh[tt] (launch only)" }
2360     };
2361
2362 #define NFILE asize(fnm)
2363
2364     seconds = gmx_gettime();
2365
2366     if (!parse_common_args(&argc, argv, PCA_NOEXIT_ON_ARGS,
2367                            NFILE, fnm, asize(pa), pa, asize(desc), desc,
2368                            0, NULL, &oenv))
2369     {
2370         return 0;
2371     }
2372
2373     // procstring[0] is used inside two different conditionals further down
2374     GMX_RELEASE_ASSERT(procstring[0] != NULL, "Options inconsistency; procstring[0] is NULL");
2375
2376     /* Store the remaining unparsed command line entries in a string which
2377      * is then attached to the mdrun command line */
2378     snew(ExtraArgs, 1);
2379     ExtraArgs[0] = '\0';
2380     for (i = 1; i < argc; i++) /* argc will now be 1 if everything was understood */
2381     {
2382         add_to_string(&ExtraArgs, argv[i]);
2383         add_to_string(&ExtraArgs, " ");
2384     }
2385
2386     if (opt2parg_bSet("-ntmpi", asize(pa), pa))
2387     {
2388         bThreads = TRUE;
2389         if (opt2parg_bSet("-npstring", asize(pa), pa))
2390         {
2391             fprintf(stderr, "WARNING: -npstring has no effect when using threads.\n");
2392         }
2393
2394         if (nnodes > 1)
2395         {
2396             gmx_fatal(FARGS, "Can't run multi-threaded MPI simulation yet!");
2397         }
2398         /* and now we just set this; a bit of an ugly hack*/
2399         nnodes = nthreads;
2400     }
2401     /* Check for PME:PP ratio and whether tpr triggers additional output files */
2402     guessPMEratio = inspect_tpr(NFILE, fnm, &rcoulomb);
2403
2404     /* Automatically set -beo options if -eo is set etc. */
2405     couple_files_options(NFILE, fnm);
2406
2407     /* Construct the command line arguments for benchmark runs
2408      * as well as for the simulation run */
2409     if (bThreads)
2410     {
2411         sprintf(bbuf, " -ntmpi %d ", nthreads);
2412     }
2413     else
2414     {
2415         /* This string will be used for MPI runs and will appear after the
2416          * mpirun command. */
2417         if (std::strcmp(procstring[0], "none") != 0)
2418         {
2419             sprintf(bbuf, " %s %d ", procstring[0], nnodes);
2420         }
2421         else
2422         {
2423             sprintf(bbuf, " ");
2424         }
2425     }
2426
2427     cmd_np = bbuf;
2428
2429     create_command_line_snippets(bAppendFiles, bKeepAndNumCPT, bResetCountersHalfWay, presteps,
2430                                  NFILE, fnm, &cmd_args_bench, &cmd_args_launch, ExtraArgs);
2431
2432     /* Prepare to use checkpoint file if requested */
2433     sim_part = 1;
2434     if (opt2bSet("-cpi", NFILE, fnm))
2435     {
2436         const char *filename = opt2fn("-cpi", NFILE, fnm);
2437         int         cpt_sim_part;
2438         read_checkpoint_part_and_step(filename,
2439                                       &cpt_sim_part, &cpt_steps);
2440         if (cpt_sim_part == 0)
2441         {
2442             gmx_fatal(FARGS, "Checkpoint file %s could not be read!", filename);
2443         }
2444         /* tune_pme will run the next part of the simulation */
2445         sim_part = cpt_sim_part + 1;
2446     }
2447
2448     /* Open performance output file and write header info */
2449     fp = gmx_ffopen(opt2fn("-p", NFILE, fnm), "w");
2450
2451     /* Make a quick consistency check of command line parameters */
2452     check_input(nnodes, repeats, &ntprs, &rmin, rcoulomb, &rmax,
2453                 maxPMEfraction, minPMEfraction, npme_fixed,
2454                 bench_nsteps, fnm, NFILE, sim_part, presteps,
2455                 asize(pa), pa);
2456     /* Check any GPU IDs passed make sense, and fill the data structure for them */
2457     snew(gpu_ids, 1);
2458     parse_digits_from_string(eligible_gpu_ids, &gpu_ids->n, &gpu_ids->ids);
2459
2460     /* Determine the maximum and minimum number of PME nodes to test,
2461      * the actual list of settings is build in do_the_tests(). */
2462     if ((nnodes > 2) && (npme_fixed < -1))
2463     {
2464         if (0 == std::strcmp(npmevalues_opt[0], "auto"))
2465         {
2466             /* Determine the npme range automatically based on the PME:PP load guess */
2467             if (guessPMEratio > 1.0)
2468             {
2469                 /* More PME than PP work, probably we do not need separate PME nodes at all! */
2470                 maxPMEnodes = nnodes/2;
2471                 minPMEnodes = nnodes/2;
2472             }
2473             else
2474             {
2475                 /* PME : PP load is in the range 0..1, let's test around the guess */
2476                 guessPMEnodes = static_cast<int>(nnodes/(1.0 + 1.0/guessPMEratio));
2477                 minPMEnodes   = static_cast<int>(std::floor(0.7*guessPMEnodes));
2478                 maxPMEnodes   = static_cast<int>(std::ceil(1.6*guessPMEnodes));
2479                 maxPMEnodes   = std::min(maxPMEnodes, nnodes/2);
2480             }
2481         }
2482         else
2483         {
2484             /* Determine the npme range based on user input */
2485             maxPMEnodes = static_cast<int>(std::floor(maxPMEfraction*nnodes));
2486             minPMEnodes = std::max(static_cast<int>(std::floor(minPMEfraction*nnodes)), 0);
2487             fprintf(stdout, "Will try runs with %d ", minPMEnodes);
2488             if (maxPMEnodes != minPMEnodes)
2489             {
2490                 fprintf(stdout, "- %d ", maxPMEnodes);
2491             }
2492             fprintf(stdout, "PME-only ranks.\n  Note that the automatic number of PME-only ranks and no separate PME ranks are always tested.\n");
2493         }
2494     }
2495     else
2496     {
2497         maxPMEnodes = 0;
2498         minPMEnodes = 0;
2499     }
2500
2501     /* Get the commands we need to set up the runs from environment variables */
2502     get_program_paths(bThreads, &cmd_mpirun, &cmd_mdrun);
2503     if (bBenchmark && repeats > 0)
2504     {
2505         check_mdrun_works(bThreads, cmd_mpirun, cmd_np, cmd_mdrun, NULL != eligible_gpu_ids);
2506     }
2507
2508     /* Print some header info to file */
2509     sep_line(fp);
2510     fprintf(fp, "\n      P E R F O R M A N C E   R E S U L T S\n");
2511     sep_line(fp);
2512     fprintf(fp, "%s for GROMACS %s\n", output_env_get_program_display_name(oenv),
2513             gmx_version());
2514     if (!bThreads)
2515     {
2516         fprintf(fp, "Number of ranks         : %d\n", nnodes);
2517         fprintf(fp, "The mpirun command is   : %s\n", cmd_mpirun);
2518         if (std::strcmp(procstring[0], "none") != 0)
2519         {
2520             fprintf(fp, "Passing # of ranks via  : %s\n", procstring[0]);
2521         }
2522         else
2523         {
2524             fprintf(fp, "Not setting number of ranks in system call\n");
2525         }
2526     }
2527     else
2528     {
2529         fprintf(fp, "Number of threads       : %d\n", nnodes);
2530     }
2531
2532     fprintf(fp, "The mdrun  command is   : %s\n", cmd_mdrun);
2533     fprintf(fp, "mdrun args benchmarks   : %s\n", cmd_args_bench);
2534     fprintf(fp, "Benchmark steps         : ");
2535     fprintf(fp, "%" GMX_PRId64, bench_nsteps);
2536     fprintf(fp, "\n");
2537     fprintf(fp, "dlb equilibration steps : %d\n", presteps);
2538     if (sim_part > 1)
2539     {
2540         fprintf(fp, "Checkpoint time step    : ");
2541         fprintf(fp, "%" GMX_PRId64, cpt_steps);
2542         fprintf(fp, "\n");
2543     }
2544     fprintf(fp, "mdrun args at launchtime: %s\n", cmd_args_launch);
2545
2546     if (new_sim_nsteps >= 0)
2547     {
2548         bOverwrite = TRUE;
2549         fprintf(stderr, "Note: Simulation input file %s will have ", opt2fn("-so", NFILE, fnm));
2550         fprintf(stderr, "%" GMX_PRId64, new_sim_nsteps+cpt_steps);
2551         fprintf(stderr, " steps.\n");
2552         fprintf(fp, "Simulation steps        : ");
2553         fprintf(fp, "%" GMX_PRId64, new_sim_nsteps);
2554         fprintf(fp, "\n");
2555     }
2556     if (repeats > 1)
2557     {
2558         fprintf(fp, "Repeats for each test   : %d\n", repeats);
2559     }
2560
2561     if (npme_fixed >= -1)
2562     {
2563         fprintf(fp, "Fixing -npme at         : %d\n", npme_fixed);
2564     }
2565
2566     fprintf(fp, "Input file              : %s\n", opt2fn("-s", NFILE, fnm));
2567     fprintf(fp, "   PME/PP load estimate : %g\n", guessPMEratio);
2568
2569     /* Allocate memory for the inputinfo struct: */
2570     snew(info, 1);
2571     info->nr_inputfiles = ntprs;
2572     for (i = 0; i < ntprs; i++)
2573     {
2574         snew(info->rcoulomb, ntprs);
2575         snew(info->rvdw, ntprs);
2576         snew(info->rlist, ntprs);
2577         snew(info->nkx, ntprs);
2578         snew(info->nky, ntprs);
2579         snew(info->nkz, ntprs);
2580         snew(info->fsx, ntprs);
2581         snew(info->fsy, ntprs);
2582         snew(info->fsz, ntprs);
2583     }
2584     /* Make alternative tpr files to test: */
2585     snew(tpr_names, ntprs);
2586     for (i = 0; i < ntprs; i++)
2587     {
2588         snew(tpr_names[i], STRLEN);
2589     }
2590
2591     /* It can be that ntprs is reduced by make_benchmark_tprs if not enough
2592      * different grids could be found. */
2593     make_benchmark_tprs(opt2fn("-s", NFILE, fnm), tpr_names, bench_nsteps+presteps,
2594                         cpt_steps, rmin, rmax, bScaleRvdw, &ntprs, info, fp);
2595
2596     /********************************************************************************/
2597     /* Main loop over all scenarios we need to test: tpr files, PME nodes, repeats  */
2598     /********************************************************************************/
2599     snew(perfdata, ntprs);
2600     if (bBenchmark)
2601     {
2602         GMX_RELEASE_ASSERT(npmevalues_opt[0] != NULL, "Options inconsistency; npmevalues_opt[0] is NULL");
2603         do_the_tests(fp, tpr_names, maxPMEnodes, minPMEnodes, npme_fixed, npmevalues_opt[0], perfdata, &pmeentries,
2604                      repeats, nnodes, ntprs, bThreads, cmd_mpirun, cmd_np, cmd_mdrun,
2605                      cmd_args_bench, fnm, NFILE, presteps, cpt_steps, bCheck, gpu_ids);
2606
2607         fprintf(fp, "\nTuning took%8.1f minutes.\n", (gmx_gettime()-seconds)/60.0);
2608
2609         /* Analyse the results and give a suggestion for optimal settings: */
2610         bKeepTPR = analyze_data(fp, opt2fn("-p", NFILE, fnm), perfdata, nnodes, ntprs, pmeentries,
2611                                 repeats, info, &best_tpr, &best_npme);
2612
2613         /* Take the best-performing tpr file and enlarge nsteps to original value */
2614         if (bKeepTPR && !bOverwrite)
2615         {
2616             simulation_tpr = opt2fn("-s", NFILE, fnm);
2617         }
2618         else
2619         {
2620             simulation_tpr = opt2fn("-so", NFILE, fnm);
2621             modify_PMEsettings(bOverwrite ? (new_sim_nsteps+cpt_steps) : info->orig_sim_steps,
2622                                info->orig_init_step, tpr_names[best_tpr], simulation_tpr);
2623         }
2624
2625         /* Let's get rid of the temporary benchmark input files */
2626         for (i = 0; i < ntprs; i++)
2627         {
2628             fprintf(stdout, "Deleting temporary benchmark input file %s\n", tpr_names[i]);
2629             remove(tpr_names[i]);
2630         }
2631
2632         /* Now start the real simulation if the user requested it ... */
2633         launch_simulation(bLaunch, fp, bThreads, cmd_mpirun, cmd_np, cmd_mdrun,
2634                           cmd_args_launch, simulation_tpr, nnodes, best_npme, gpu_ids);
2635     }
2636     gmx_ffclose(fp);
2637
2638     /* ... or simply print the performance results to screen: */
2639     if (!bLaunch)
2640     {
2641         finalize(opt2fn("-p", NFILE, fnm));
2642     }
2643
2644     return 0;
2645 }