// // Copyright 2010 Intel Corporation // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. // /* * This utility configures a NPB to be built for a specific number * of nodes and a specific class. It creates a file "npbparams.h" * in the source directory. This file keeps state information about * which size of benchmark is currently being built (so that nothing * if unnecessarily rebuilt) and defines (through PARAMETER statements) * the number of nodes and class for which a benchmark is being built. * The utility takes 3 arguments: * setparams benchmark-name nprocs class * benchmark-name is "sp", "bt", etc * nprocs is the number of processors to run on * class is the size of the benchmark * These parameters are checked for the current benchmark. If they * are invalid, this program prints a message and aborts. * If the parameters are ok, the current npbsize.h (actually just * the first line) is read in. If the new parameters are the same as * the old, nothing is done, but an exit code is returned to force the * user to specify (otherwise the make procedure succeeds but builds a * binary of the wrong name). Otherwise the file is rewritten. * Errors write a message (to stdout) and abort. * * This program makes use of two extra benchmark "classes" * class "X" means an invalid specification. It is returned if * there is an error parsing the config file. * class "U" is an external specification meaning "unknown class" * * Unfortunately everything has to be case sensitive. This is * because we can always convert lower to upper or v.v. but * can't feed this information back to the makefile, so typing * make CLASS=a and make CLASS=A will produce different binaries. * * */ #include #include #include #include #include #include /* * This is the master version number for this set of * NPB benchmarks. It is in an obscure place so people * won't accidentally change it. */ #define VERSION "3.3" /* controls verbose output from setparams */ /* #define VERBOSE */ #define FILENAME "npbparams.h" #define DESC_LINE "c NPROCS = %d CLASS = %c\n" #define C_DESC_LINE "// NPROCS = %d CLASS = %c\n" #define BT_DESC_LINE "// NPROCS = %d CLASS = %c SUBTYPE = %s\n" #define DEF_CLASS_LINE "#define CLASS '%c'\n" #define DEF_NUM_PROCS_LINE "#define NUM_PROCS %d\n" #define FINDENT " " #define CONTINUE " > " #ifdef FORTRAN_REC_SIZE int fortran_rec_size = FORTRAN_REC_SIZE; #else int fortran_rec_size = 4; #endif void get_info(int argc, char *argv[], int *typep, int *nprocsp, char *classp, int* subtypep); void check_info(int type, int nprocs, char class); void read_info(int type, int *nprocsp, char *classp, int *subtypep); void write_info(int type, int nprocs, char class, int subtype); void write_sp_info(FILE *fp, int nprocs, char class); void write_bt_info(FILE *fp, int nprocs, char class, int io); void write_lu_info(FILE *fp, int nprocs, char class); void write_mg_info(FILE *fp, int nprocs, char class); void write_cg_info(FILE *fp, int nprocs, char class); void write_ft_info(FILE *fp, int nprocs, char class); void write_ep_info(FILE *fp, int nprocs, char class); void write_is_info(FILE *fp, int nprocs, char class); void write_dt_info(FILE *fp, int nprocs, char class); void write_compiler_info(int type, FILE *fp); void write_convertdouble_info(int type, FILE *fp); void check_line(char *line, char *label, char *val); int check_include_line(char *line, char *filename); void put_string(FILE *fp, char *name, char *val); void put_def_string(FILE *fp, char *name, char *val); void put_def_variable(FILE *fp, char *name, char *val); int isqrt(int i); int ilog2(int i); int ipow2(int i); enum benchmark_types {SP, BT, LU, MG, FT, IS, DT, EP, CG}; enum iotypes { NONE = 0, FULL, SIMPLE, EPIO, FORTRAN}; int main(int argc, char *argv[]) { int nprocs, nprocs_old, type; char class, class_old; int subtype = -1, old_subtype = -1; /* Get command line arguments. Make sure they're ok. */ get_info(argc, argv, &type, &nprocs, &class, &subtype); if (class != 'U') { #ifdef VERBOSE printf("setparams: For benchmark %s: number of processors = %d class = %c\n", argv[1], nprocs, class); #endif check_info(type, nprocs, class); } /* Get old information. */ read_info(type, &nprocs_old, &class_old, &old_subtype); if (class != 'U') { if (class_old != 'X') { #ifdef VERBOSE printf("setparams: old settings: number of processors = %d class = %c\n", nprocs_old, class_old); #endif } } else { printf("setparams:\n\ *********************************************************************\n\ * You must specify NPROCS and CLASS to build this benchmark *\n\ * For example, to build a class A benchmark for 4 processors, type *\n\ * make {benchmark-name} NPROCS=4 CLASS=A *\n\ *********************************************************************\n\n"); if (class_old != 'X') { #ifdef VERBOSE printf("setparams: Previous settings were CLASS=%c NPROCS=%d\n", class_old, nprocs_old); #endif } exit(1); /* exit on class==U */ } /* Write out new information if it's different. */ if (nprocs != nprocs_old || class != class_old || subtype != old_subtype) { #ifdef VERBOSE printf("setparams: Writing %s\n", FILENAME); #endif write_info(type, nprocs, class, subtype); } else { #ifdef VERBOSE printf("setparams: Settings unchanged. %s unmodified\n", FILENAME); #endif } return 0; } /* * get_info(): Get parameters from command line */ void get_info(int argc, char *argv[], int *typep, int *nprocsp, char *classp, int *subtypep) { if (argc < 4) { printf("Usage: %s (%d) benchmark-name nprocs class\n", argv[0], argc); exit(1); } *nprocsp = atoi(argv[2]); *classp = *argv[3]; if (!strcmp(argv[1], "sp") || !strcmp(argv[1], "SP")) *typep = SP; else if (!strcmp(argv[1], "ft") || !strcmp(argv[1], "FT")) *typep = FT; else if (!strcmp(argv[1], "lu") || !strcmp(argv[1], "LU")) *typep = LU; else if (!strcmp(argv[1], "mg") || !strcmp(argv[1], "MG")) *typep = MG; else if (!strcmp(argv[1], "is") || !strcmp(argv[1], "IS")) *typep = IS; else if (!strcmp(argv[1], "dt") || !strcmp(argv[1], "DT")) *typep = DT; else if (!strcmp(argv[1], "ep") || !strcmp(argv[1], "EP")) *typep = EP; else if (!strcmp(argv[1], "cg") || !strcmp(argv[1], "CG")) *typep = CG; else if (!strcmp(argv[1], "bt") || !strcmp(argv[1], "BT")) { *typep = BT; if (argc != 5) { /* printf("Usage: %s (%d) benchmark-name nprocs class\n", argv[0], argc); */ /* exit(1); */ *subtypep = NONE; } else { if (!strcmp(argv[4], "full") || !strcmp(argv[4], "FULL")) { *subtypep = FULL; } else if (!strcmp(argv[4], "simple") || !strcmp(argv[4], "SIMPLE")) { *subtypep = SIMPLE; } else if (!strcmp(argv[4], "epio") || !strcmp(argv[4], "EPIO")) { *subtypep = EPIO; } else if (!strcmp(argv[4], "fortran") || !strcmp(argv[4], "FORTRAN")) { *subtypep = FORTRAN; } else if (!strcmp(argv[4], "none") || !strcmp(argv[4], "NONE")) { *subtypep = NONE; } else { printf("setparams: Error: unknown btio type %s\n", argv[4]); exit(1); } } } else { printf("setparams: Error: unknown benchmark type %s\n", argv[1]); exit(1); } } /* * check_info(): Make sure command line data is ok for this benchmark */ void check_info(int type, int nprocs, char class) { int rootprocs, logprocs; /* check number of processors */ if (nprocs <= 0) { printf("setparams: Number of processors must be greater than zero\n"); exit(1); } switch(type) { case SP: case BT: rootprocs = isqrt(nprocs); if (rootprocs < 0) { printf("setparams: Number of processors %d must be a square (1,4,9,...) for this benchmark", nprocs); exit(1); } if (class == 'S' && nprocs > 16) { printf("setparams: BT and SP sample sizes cannot be run on more\n"); printf(" than 16 processors because the cell size would be too small.\n"); exit(1); } break; case CG: case FT: case MG: case IS: case LU: logprocs = ilog2(nprocs); if (logprocs < 0) { printf("setparams: Number of processors must be a power of two (1,2,4,...) for this benchmark\n"); exit(1); } break; case EP: case DT: break; default: /* never should have gotten this far with a bad name */ printf("setparams: (Internal Error) Benchmark type %d unknown to this program\n", type); exit(1); } /* check class */ if (class != 'S' && class != 'W' && class != 'A' && class != 'B' && class != 'C' && class != 'D' && class != 'E') { printf("setparams: Unknown benchmark class %c\n", class); printf("setparams: Allowed classes are \"S\", \"W\", and \"A\" through \"E\"\n"); exit(1); } if (class == 'E' && (type == IS || type == DT)) { printf("setparams: Benchmark class %c not defined for IS or DT\n", class); exit(1); } if (class == 'D' && type == IS && nprocs < 4) { printf("setparams: IS class D size cannot be run on less than 4 processors\n"); exit(1); } } /* * read_info(): Read previous information from file. * Not an error if file doesn't exist, because this * may be the first time we're running. * Assumes the first line of the file is in a special * format that we understand (since we wrote it). */ void read_info(int type, int *nprocsp, char *classp, int *subtypep) { int nread = 0; FILE *fp; fp = fopen(FILENAME, "r"); if (fp == NULL) { #ifdef VERBOSE printf("setparams: INFO: configuration file %s does not exist (yet)\n", FILENAME); #endif goto abort; } /* first line of file contains info (fortran), first two lines (C) */ switch(type) { case BT: { char subtype_str[100]; nread = fscanf(fp, BT_DESC_LINE, nprocsp, classp, subtype_str); if (nread != 3) { if (nread != 2) { printf("setparams: Error parsing config file %s. Ignoring previous settings\n", FILENAME); goto abort; } *subtypep = 0; break; } if (!strcmp(subtype_str, "full") || !strcmp(subtype_str, "FULL")) { *subtypep = FULL; } else if (!strcmp(subtype_str, "simple") || !strcmp(subtype_str, "SIMPLE")) { *subtypep = SIMPLE; } else if (!strcmp(subtype_str, "epio") || !strcmp(subtype_str, "EPIO")) { *subtypep = EPIO; } else if (!strcmp(subtype_str, "fortran") || !strcmp(subtype_str, "FORTRAN")) { *subtypep = FORTRAN; } else { *subtypep = -1; } break; } case SP: case FT: case MG: case LU: case EP: case CG: nread = fscanf(fp, C_DESC_LINE, nprocsp, classp); if (nread != 2) { printf("setparams: Error parsing config file %s. Ignoring previous settings\n", FILENAME); goto abort; } break; case IS: case DT: nread = fscanf(fp, DEF_CLASS_LINE, classp); nread += fscanf(fp, DEF_NUM_PROCS_LINE, nprocsp); if (nread != 2) { printf("setparams: Error parsing config file %s. Ignoring previous settings\n", FILENAME); goto abort; } break; default: /* never should have gotten this far with a bad name */ printf("setparams: (Internal Error) Benchmark type %d unknown to this program\n", type); exit(1); } fclose(fp); return; abort: *nprocsp = -1; *classp = 'X'; *subtypep = -1; return; } /* * write_info(): Write new information to config file. * First line is in a special format so we can read * it in again. Then comes a warning. The rest is all * specific to a particular benchmark. */ void write_info(int type, int nprocs, char class, int subtype) { FILE *fp; char *BT_TYPES[] = {"NONE", "FULL", "SIMPLE", "EPIO", "FORTRAN"}; fp = fopen(FILENAME, "w"); if (fp == NULL) { printf("setparams: Can't open file %s for writing\n", FILENAME); exit(1); } switch(type) { case BT: /* Write out the header */ if (subtype == -1 || subtype == 0) { fprintf(fp, C_DESC_LINE, nprocs, class); } else { fprintf(fp, BT_DESC_LINE, nprocs, class, BT_TYPES[subtype]); } /* Print out a warning so bozos don't mess with the file */ fprintf(fp, "\ // \n\ // \n\ // This file is generated automatically by the setparams utility.\n\ // It sets the number of processors and the class of the NPB\n\ // in this directory. Do not modify it by hand.\n\ // \n"); break; case SP: case FT: case MG: case LU: case EP: case CG: fprintf(fp, C_DESC_LINE, nprocs, class); fprintf(fp, "\ // \n\ // \n\ // This file is generated automatically by the setparams utility.\n\ // It sets the number of processors and the class of the NPB\n\ // in this directory. Do not modify it by hand.\n\ // \n"); break; case IS: case DT: fprintf(fp, DEF_CLASS_LINE, class); fprintf(fp, DEF_NUM_PROCS_LINE, nprocs); fprintf(fp, "\ /*\n\ This file is generated automatically by the setparams utility.\n\ It sets the number of processors and the class of the NPB\n\ in this directory. Do not modify it by hand. */\n\ \n"); break; default: printf("setparams: (Internal error): Unknown benchmark type %d\n", type); exit(1); } /* Now do benchmark-specific stuff */ switch(type) { case SP: write_sp_info(fp, nprocs, class); break; case LU: write_lu_info(fp, nprocs, class); break; case MG: write_mg_info(fp, nprocs, class); break; case IS: write_is_info(fp, nprocs, class); break; case DT: write_dt_info(fp, nprocs, class); break; case FT: write_ft_info(fp, nprocs, class); break; case EP: write_ep_info(fp, nprocs, class); break; case CG: write_cg_info(fp, nprocs, class); break; case BT: write_bt_info(fp, nprocs, class, subtype); break; default: printf("setparams: (Internal error): Unknown benchmark type %d\n", type); exit(1); } write_convertdouble_info(type, fp); write_compiler_info(type, fp); fclose(fp); return; } /* * write_sp_info(): Write SP specific info to config file */ void write_sp_info(FILE *fp, int nprocs, char class) { int maxcells, problem_size, niter; char *dt; maxcells = isqrt(nprocs); if (class == 'S') { problem_size = 12; dt = "0.015e0"; niter = 100; } else if (class == 'W') { problem_size = 36; dt = "0.0015e0"; niter = 400; } else if (class == 'A') { problem_size = 64; dt = "0.0015e0"; niter = 400; } else if (class == 'B') { problem_size = 102; dt = "0.001e0"; niter = 400; } else if (class == 'C') { problem_size = 162; dt = "0.00067e0"; niter = 400; } else if (class == 'D') { problem_size = 408; dt = "0.00030e0"; niter = 500; } else if (class == 'E') { problem_size = 1020; dt = "0.0001e0"; niter = 500; } else { printf("setparams: Internal error: invalid class %c\n", class); exit(1); } fprintf(fp, "#define MAXCELLS %d\n", maxcells); fprintf(fp, "#define PROBLEM_SIZE %d\n", problem_size); fprintf(fp, "#define NITER_DEFAULT %d\n", niter); fprintf(fp, "\nstatic double dt_default = %s;\n\n", dt); } /* * write_bt_info(): Write BT specific info to config file */ void write_bt_info(FILE *fp, int nprocs, char class, int io) { int maxcells, problem_size, niter, wr_interval; char *dt; maxcells = isqrt(nprocs); if (class == 'S') { problem_size = 12; dt = "0.010e0"; niter = 60; } else if (class == 'W') { problem_size = 24; dt = "0.0008e0"; niter = 200; } else if (class == 'A') { problem_size = 64; dt = "0.0008e0"; niter = 200; } else if (class == 'B') { problem_size = 102; dt = "0.0003e0"; niter = 200; } else if (class == 'C') { problem_size = 162; dt = "0.0001e0"; niter = 200; } else if (class == 'D') { problem_size = 408; dt = "0.00002e0"; niter = 250; } else if (class == 'E') { problem_size = 1020; dt = "0.4e-5"; niter = 250; } else { printf("setparams: Internal error: invalid class %c\n", class); exit(1); } wr_interval = 5; fprintf(fp, "#define MAXCELLS %d\n", maxcells); fprintf(fp, "#define PROBLEM_SIZE %d\n", problem_size); fprintf(fp, "#define NITER_DEFAULT %d\n", niter); if (io) fprintf(fp, "#define BTIO_SUBTYPE %d\n", io); fprintf(fp, "\n"); fprintf(fp, "static double dt_default = %s;\n", dt); fprintf(fp, "static int wr_default = %d;\n", wr_interval); fprintf(fp, "static int iotype = %d;\n", io); if (io) { switch (io) { case FULL: fprintf(fp, "static char *filenm = \"btio.full.out\";\n"); break; case SIMPLE: fprintf(fp, "static char *filenm = \"btio.simple.out\";\n"); break; case EPIO: fprintf(fp, "static char *filenm = \"btio.epio.out\";\n"); break; case FORTRAN: fprintf(fp, "static char *filenm = \"btio.fortran.out\";\n"); break; default: break; } } fprintf(fp, "\n"); } /* * write_lu_info(): Write SP specific info to config file */ void write_lu_info(FILE *fp, int nprocs, char class) { int isiz1, isiz2, itmax, inorm, problem_size; int xdiv, ydiv; /* number of cells in x and y direction */ char *dt_default; if (class == 'S') { problem_size = 12; dt_default = "0.5e0"; itmax = 50; } else if (class == 'W') { problem_size = 33; dt_default = "1.5e-3"; itmax = 300; } else if (class == 'A') { problem_size = 64; dt_default = "2.0e0"; itmax = 250; } else if (class == 'B') { problem_size = 102; dt_default = "2.0e0"; itmax = 250; } else if (class == 'C') { problem_size = 162; dt_default = "2.0e0"; itmax = 250; } else if (class == 'D') { problem_size = 408; dt_default = "1.0e0"; itmax = 300; } else if (class == 'E') { problem_size = 1020; dt_default = "0.5e0"; itmax = 300; } else { printf("setparams: Internal error: invalid class %c\n", class); exit(1); } inorm = itmax; xdiv = ydiv = ilog2(nprocs)/2; if (xdiv+ydiv != ilog2(nprocs)) xdiv += 1; xdiv = ipow2(xdiv); ydiv = ipow2(ydiv); isiz1 = problem_size/xdiv; if (isiz1*xdiv < problem_size) isiz1++; isiz2 = problem_size/ydiv; if (isiz2*ydiv < problem_size) isiz2++; fprintf(fp, "\n// number of nodes for which this version is compiled\n"); fprintf(fp, "%sstatic int nnodes_compiled = %d;\n", FINDENT, nprocs); fprintf(fp, "\n// full problem size\n"); fprintf(fp, "%sstatic const int isiz01 = %d, isiz02 = %d, isiz03 = %d;\n", FINDENT, problem_size, problem_size, problem_size); fprintf(fp, "\n// sub-domain array size\n"); fprintf(fp, "%sstatic const int isiz1 = %d, isiz2 = %d, isiz3 = %d;\n", FINDENT, isiz1, isiz2, problem_size); fprintf(fp, "\n// number of iterations and how often to print the norm\n"); fprintf(fp, "%sstatic int itmax_default = %d, inorm_default = %d;\n", FINDENT, itmax, inorm); fprintf(fp, "%sstatic double dt_default = %s;\n", FINDENT, dt_default); } /* * write_mg_info(): Write MG specific info to config file */ void write_mg_info(FILE *fp, int nprocs, char class) { int problem_size, nit, log2_size, log2_nprocs, lt_default, lm; int ndim1, ndim2, ndim3; if (class == 'S') { problem_size = 32; nit = 4; } else if (class == 'W') { problem_size = 128; nit = 4; } else if (class == 'A') { problem_size = 256; nit = 4; } else if (class == 'B') { problem_size = 256; nit = 20; } else if (class == 'C') { problem_size = 512; nit = 20; } else if (class == 'D') { problem_size = 1024; nit = 50; } else if (class == 'E') { problem_size = 2048; nit = 50; } else { printf("setparams: Internal error: invalid class type %c\n", class); exit(1); } log2_size = ilog2(problem_size); log2_nprocs = ilog2(nprocs); /* lt is log of largest total dimension */ lt_default = log2_size; /* log of log of maximum dimension on a node */ lm = log2_size - log2_nprocs/3; ndim1 = lm; ndim3 = log2_size - (log2_nprocs+2)/3; ndim2 = log2_size - (log2_nprocs+1)/3; fprintf(fp, "static int nprocs_compiled = %d;\n", nprocs); fprintf(fp, "static int nx_default = %d;\n", problem_size); fprintf(fp, "static int ny_default = %d;\n", problem_size); fprintf(fp, "static int nz_default = %d;\n", problem_size); fprintf(fp, "static int nit_default = %d;\n", nit); fprintf(fp, "static int debug_default = %d;\n", 0); fprintf(fp, "#define LM %d\n", lm); fprintf(fp, "#define LT_DEFAULT %d\n", lt_default); fprintf(fp, "#define NDIM1 %d\n", ndim1); fprintf(fp, "#define NDIM2 %d\n", ndim2); fprintf(fp, "#define NDIM3 %d\n", ndim3); } /* * write_dt_info(): Write DT specific info to config file */ void write_dt_info(FILE *fp, int nprocs, char class) { int num_samples,deviation,num_sources; if (class == 'S') { num_samples=1728; deviation=128; num_sources=4; } else if (class == 'W') { num_samples=1728*8; deviation=128*2; num_sources=4*2; } else if (class == 'A') { num_samples=1728*64; deviation=128*4; num_sources=4*4; } else if (class == 'B') { num_samples=1728*512; deviation=128*8; num_sources=4*8; } else if (class == 'C') { num_samples=1728*4096; deviation=128*16; num_sources=4*16; } else if (class == 'D') { num_samples=1728*4096*8; deviation=128*32; num_sources=4*32; } else { printf("setparams: Internal error: invalid class type %c\n", class); exit(1); } fprintf(fp, "#define NUM_SAMPLES %d\n", num_samples); fprintf(fp, "#define STD_DEVIATION %d\n", deviation); fprintf(fp, "#define NUM_SOURCES %d\n", num_sources); } /* * write_is_info(): Write IS specific info to config file */ void write_is_info(FILE *fp, int nprocs, char class) { if( class != 'S' && class != 'W' && class != 'A' && class != 'B' && class != 'C' && class != 'D' ) { printf("setparams: Internal error: invalid class type %c\n", class); exit(1); } } /* * write_cg_info(): Write CG specific info to config file */ void write_cg_info(FILE *fp, int nprocs, char class) { int na,nonzer,niter; char *shift,*rcond="1.0e-1"; char *shiftS="10.", *shiftW="12.", *shiftA="20.", *shiftB="60.", *shiftC="110.", *shiftD="500.", *shiftE="1.5e3"; int num_proc_cols, num_proc_rows; if( class == 'S' ) { na=1400; nonzer=7; niter=15; shift=shiftS; } else if( class == 'W' ) { na=7000; nonzer=8; niter=15; shift=shiftW; } else if( class == 'A' ) { na=14000; nonzer=11; niter=15; shift=shiftA; } else if( class == 'B' ) { na=75000; nonzer=13; niter=75; shift=shiftB; } else if( class == 'C' ) { na=150000; nonzer=15; niter=75; shift=shiftC; } else if( class == 'D' ) { na=1500000; nonzer=21; niter=100; shift=shiftD; } else if( class == 'E' ) { na=9000000; nonzer=26; niter=100; shift=shiftE; } else { printf("setparams: Internal error: invalid class type %c\n", class); exit(1); } fprintf( fp, "#define na %d\n", na ); fprintf( fp, "#define nonzer %d\n", nonzer ); fprintf( fp, "static int niter = %d;\n", niter ); fprintf( fp, "static double shift = %s,\n", shift ); fprintf( fp, " rcond = %s;\n", rcond ); num_proc_cols = num_proc_rows = ilog2(nprocs)/2; if (num_proc_cols+num_proc_rows != ilog2(nprocs)) num_proc_cols += 1; num_proc_cols = ipow2(num_proc_cols); num_proc_rows = ipow2(num_proc_rows); fprintf( fp, "\n// number of nodes for which this version is compiled\n" ); fprintf( fp, "static int nnodes_compiled = %d;\n", nprocs ); fprintf( fp, "#define num_proc_cols %d\n", num_proc_cols ); fprintf( fp, "#define num_proc_rows %d\n", num_proc_rows ); } /* * write_ft_info(): Write FT specific info to config file */ void write_ft_info(FILE *fp, int nprocs, char class) { /* easiest way (given the way the benchmark is written) * is to specify log of number of grid points in each * direction m1, m2, m3. nt is the number of iterations */ int nx, ny, nz, maxdim, niter; if (class == 'S') { nx = 64; ny = 64; nz = 64; niter = 6;} else if (class == 'W') { nx = 128; ny = 128; nz = 32; niter = 6;} else if (class == 'A') { nx = 256; ny = 256; nz = 128; niter = 6;} else if (class == 'B') { nx = 512; ny = 256; nz = 256; niter =20;} else if (class == 'C') { nx = 512; ny = 512; nz = 512; niter =20;} else if (class == 'D') { nx = 2048; ny = 1024; nz = 1024; niter =25;} else if (class == 'E') { nx = 4096; ny = 2048; nz = 2048; niter =25;} else { printf("setparams: Internal error: invalid class type %c\n", class); exit(1); } maxdim = nx; if (ny > maxdim) maxdim = ny; if (nz > maxdim) maxdim = nz; fprintf(fp, "#define nx %d\n#define ny %d\n#define nz %d\n#define maxdim %d\n", nx, ny, nz, maxdim); fprintf(fp, "#define niter_default %d\n", niter); fprintf(fp, "#define np_min %d\n", nprocs); fprintf(fp, "#define ntdivnp (((nx*ny)/np_min)*nz)\n"); fprintf(fp, "static double ntotal_f = 1.e0*nx*ny*nz;\n"); } /* * write_ep_info(): Write EP specific info to config file */ void write_ep_info(FILE *fp, int nprocs, char class) { /* easiest way (given the way the benchmark is written) * is to specify log of number of grid points in each * direction m1, m2, m3. nt is the number of iterations */ int m; if (class == 'S') { m = 24; } else if (class == 'W') { m = 25; } else if (class == 'A') { m = 28; } else if (class == 'B') { m = 30; } else if (class == 'C') { m = 32; } else if (class == 'D') { m = 36; } else if (class == 'E') { m = 40; } else { printf("setparams: Internal error: invalid class type %c\n", class); exit(1); } /* number of processors given by "npm" */ fprintf(fp, "static char class =\'%c\';\n", class); fprintf(fp, "static int m=%d, npm=%d;\n", m, nprocs); } /* * This is a gross hack to allow the benchmarks to * print out how they were compiled. Various other ways * of doing this have been tried and they all fail on * some machine - due to a broken "make" program, or * F77 limitations, of whatever. Hopefully this will * always work because it uses very portable C. Unfortunately * it relies on parsing the make.def file - YUK. * If your machine doesn't have or , happy hacking! * */ #define VERBOSE #define LL 400 #include #define DEFFILE "../config/make.def" #define DEFAULT_MESSAGE "(none)" FILE *deffile; void write_compiler_info(int type, FILE *fp) { char line[LL]; char mpif77[LL], flink[LL], fmpi_lib[LL], fmpi_inc[LL], fflags[LL], flinkflags[LL]; char compiletime[LL], randfile[LL]; char mpicc[LL], cflags[LL], clink[LL], clinkflags[LL], cmpi_lib[LL], cmpi_inc[LL]; struct tm *tmp; time_t t; deffile = fopen(DEFFILE, "r"); if (deffile == NULL) { printf("\n\ setparams: File %s doesn't exist. To build the NAS benchmarks\n\ you need to create is according to the instructions\n\ in the README in the main directory and comments in \n\ the file config/make.def.template\n", DEFFILE); exit(1); } strcpy(mpif77, DEFAULT_MESSAGE); strcpy(flink, DEFAULT_MESSAGE); strcpy(fmpi_lib, DEFAULT_MESSAGE); strcpy(fmpi_inc, DEFAULT_MESSAGE); strcpy(fflags, DEFAULT_MESSAGE); strcpy(flinkflags, DEFAULT_MESSAGE); strcpy(randfile, DEFAULT_MESSAGE); strcpy(mpicc, DEFAULT_MESSAGE); strcpy(cflags, DEFAULT_MESSAGE); strcpy(clink, DEFAULT_MESSAGE); strcpy(clinkflags, DEFAULT_MESSAGE); strcpy(cmpi_lib, DEFAULT_MESSAGE); strcpy(cmpi_inc, DEFAULT_MESSAGE); while (fgets(line, LL, deffile) != NULL) { if (*line == '#') continue; /* yes, this is inefficient. but it's simple! */ check_line(line, "MPIF77", mpif77); check_line(line, "FLINK", flink); check_line(line, "FMPI_LIB", fmpi_lib); check_line(line, "FMPI_INC", fmpi_inc); check_line(line, "FFLAGS", fflags); check_line(line, "FLINKFLAGS", flinkflags); check_line(line, "RAND", randfile); check_line(line, "MPICC", mpicc); check_line(line, "CFLAGS", cflags); check_line(line, "CLINK", clink); check_line(line, "CLINKFLAGS", clinkflags); check_line(line, "CMPI_LIB", cmpi_lib); check_line(line, "CMPI_INC", cmpi_inc); /* if the dummy library is used by including make.dummy, we set the Fortran and C paths to libraries and headers accordingly */ if(check_include_line(line, "../config/make.dummy")) { strcpy(fmpi_lib, "-L../MPI_dummy -lmpi"); strcpy(fmpi_inc, "-I../MPI_dummy"); strcpy(cmpi_lib, "-L../MPI_dummy -lmpi"); strcpy(cmpi_inc, "-I../MPI_dummy"); } } (void) time(&t); tmp = localtime(&t); (void) strftime(compiletime, (size_t)LL, "%d %b %Y", tmp); switch(type) { case FT: case SP: case BT: case MG: case LU: case EP: case CG: put_def_string(fp, "COMPILETIME", compiletime); put_def_string(fp, "NPBVERSION", VERSION); put_def_string(fp, "CS1", mpicc); put_def_string(fp, "CS2", clink); put_def_string(fp, "CS3", cmpi_lib); put_def_string(fp, "CS4", cmpi_inc); put_def_string(fp, "CS5", cflags); put_def_string(fp, "CS6", clinkflags); put_def_string(fp, "CS7", randfile); break; case IS: case DT: put_def_string(fp, "COMPILETIME", compiletime); put_def_string(fp, "NPBVERSION", VERSION); put_def_string(fp, "MPICC", mpicc); put_def_string(fp, "CFLAGS", cflags); put_def_string(fp, "CLINK", clink); put_def_string(fp, "CLINKFLAGS", clinkflags); put_def_string(fp, "CMPI_LIB", cmpi_lib); put_def_string(fp, "CMPI_INC", cmpi_inc); break; default: printf("setparams: (Internal error): Unknown benchmark type %d\n", type); exit(1); } } void check_line(char *line, char *label, char *val) { char *original_line; int n; original_line = line; /* compare beginning of line and label */ while (*label != '\0' && *line == *label) { line++; label++; } /* if *label is not EOS, we must have had a mismatch */ if (*label != '\0') return; /* if *line is not a space, actual label is longer than test label */ if (!isspace(*line) && *line != '=') return ; /* skip over white space */ while (isspace(*line)) line++; /* next char should be '=' */ if (*line != '=') return; /* skip over white space */ while (isspace(*++line)); /* if EOS, nothing was specified */ if (*line == '\0') return; /* finally we've come to the value */ strcpy(val, line); /* chop off the newline at the end */ n = strlen(val)-1; if (n >= 0 && val[n] == '\n') val[n--] = '\0'; if (n >= 0 && val[n] == '\r') val[n--] = '\0'; /* treat continuation */ while (val[n] == '\\' && fgets(original_line, LL, deffile)) { line = original_line; while (isspace(*line)) line++; if (isspace(*original_line)) val[n++] = ' '; while (*line && *line != '\n' && *line != '\r' && n < LL-1) val[n++] = *line++; val[n] = '\0'; n--; } /* if (val[strlen(val) - 1] == '\\') { printf("\n\ setparams: Error in file make.def. Because of the way in which\n\ command line arguments are incorporated into the\n\ executable benchmark, you can't have any continued\n\ lines in the file make.def, that is, lines ending\n\ with the character \"\\\". Although it may be ugly, \n\ you should be able to reformat without continuation\n\ lines. The offending line is\n\ %s\n", original_line); exit(1); } */ } int check_include_line(char *line, char *filename) { char *include_string = "include"; /* compare beginning of line and "include" */ while (*include_string != '\0' && *line == *include_string) { line++; include_string++; } /* if *include_string is not EOS, we must have had a mismatch */ if (*include_string != '\0') return(0); /* if *line is not a space, first word is not "include" */ if (!isspace(*line)) return(0); /* skip over white space */ while (isspace(*++line)); /* if EOS, nothing was specified */ if (*line == '\0') return(0); /* next keyword should be name of include file in *filename */ while (*filename != '\0' && *line == *filename) { line++; filename++; } if (*filename != '\0' || (*line != ' ' && *line != '\0' && *line !='\n')) return(0); else return(1); } #define MAXL 46 void put_string(FILE *fp, char *name, char *val) { int len; len = strlen(val); if (len > MAXL) { val[MAXL] = '\0'; val[MAXL-1] = '.'; val[MAXL-2] = '.'; val[MAXL-3] = '.'; len = MAXL; } fprintf(fp, "%scharacter*%d %s\n", FINDENT, len, name); fprintf(fp, "%sparameter (%s=\'%s\')\n", FINDENT, name, val); } /* NOTE: is the ... stuff necessary in C? */ void put_def_string(FILE *fp, char *name, char *val) { int len; len = strlen(val); if (len > MAXL) { val[MAXL] = '\0'; val[MAXL-1] = '.'; val[MAXL-2] = '.'; val[MAXL-3] = '.'; len = MAXL; } fprintf(fp, "#define %s \"%s\"\n", name, val); } void put_def_variable(FILE *fp, char *name, char *val) { int len; len = strlen(val); if (len > MAXL) { val[MAXL] = '\0'; val[MAXL-1] = '.'; val[MAXL-2] = '.'; val[MAXL-3] = '.'; len = MAXL; } fprintf(fp, "#define %s %s\n", name, val); } #if 0 /* this version allows arbitrarily long lines but * some compilers don't like that and they're rarely * useful */ #define LINELEN 65 void put_string(FILE *fp, char *name, char *val) { int len, nlines, pos, i; char line[100]; len = strlen(val); nlines = len/LINELEN; if (nlines*LINELEN < len) nlines++; fprintf(fp, "%scharacter*%d %s\n", FINDENT, nlines*LINELEN, name); fprintf(fp, "%sparameter (%s = \n", FINDENT, name); for (i = 0; i < nlines; i++) { pos = i*LINELEN; if (i == 0) fprintf(fp, "%s\'", CONTINUE); else fprintf(fp, "%s", CONTINUE); /* number should be same as LINELEN */ fprintf(fp, "%.65s", val+pos); if (i == nlines-1) fprintf(fp, "\')\n"); else fprintf(fp, "\n"); } } #endif /* integer square root. Return error if argument isn't * a perfect square or is less than or equal to zero */ int isqrt(int i) { int root, square; if (i <= 0) return(-1); square = 0; for (root = 1; square <= i; root++) { square = root*root; if (square == i) return(root); } return(-1); } /* integer log base two. Return error is argument isn't * a power of two or is less than or equal to zero */ int ilog2(int i) { int log2; int exp2 = 1; if (i <= 0) return(-1); for (log2 = 0; log2 < 20; log2++) { if (exp2 == i) return(log2); exp2 *= 2; } return(-1); } int ipow2(int i) { int pow2 = 1; if (i < 0) return(-1); if (i == 0) return(1); while(i--) pow2 *= 2; return(pow2); } void write_convertdouble_info(int type, FILE *fp) { switch(type) { case SP: case BT: case LU: case FT: case MG: case EP: case CG: #ifdef CONVERTDOUBLE fprintf(fp, "static int convertdouble = 1;\n"); #else fprintf(fp, "static int convertdouble = 0;\n"); #endif break; } }