IOR library version.

master
Julian M. Kunkel 2018-07-07 11:42:21 +01:00
parent a6bfa0f94b
commit 21b8cca8cf
5 changed files with 391 additions and 324 deletions

View File

@ -10,7 +10,7 @@ extraLDADD =
extraLDFLAGS =
extraCPPFLAGS =
ior_SOURCES = ior.c utilities.c parse_options.c getopt/optlist.c
ior_SOURCES = ior-main.c ior.c utilities.c parse_options.c getopt/optlist.c
ior_LDFLAGS =
ior_LDADD =
ior_CPPFLAGS =

706
src/ior.c

File diff suppressed because it is too large Load Diff

View File

@ -245,4 +245,7 @@ int CountTasksPerNode(int numTasks, MPI_Comm comm);
*/
IOR_test_t * ior_run(int argc, char **argv, MPI_Comm world_com, FILE * out_logfile);
/* Actual IOR Main function, renamed to allow library usage */
int ior_main(int argc, char **argv);
#endif /* !_IOR_H */

View File

@ -32,7 +32,7 @@
# include <io.h>
# include <direct.h>
# define MAXPATHLEN 1024
# define MAXPATHLEN 2048
# define F_OK 00
# define W_OK 02
# define R_OK 04

View File

@ -7,7 +7,7 @@
# Example: export IOR_EXTRA="-v -v -v"
IOR_MPIRUN=${IOR_MPIRUN:-mpiexec -np}
IOR_BIN_DIR=${IOR_EXEC:-./build/src}
IOR_BIN_DIR=${IOR_BIN_DIR:-./build/src}
IOR_OUT=${IOR_OUT:-./build/test}
IOR_EXTRA=${IOR_EXTRA:-} # Add global options like verbosity
MDTEST_EXTRA=${MDTEST_EXTRA:-}