summaryrefslogtreecommitdiffstats
path: root/tools/src/h5perf/pio_perf.c
diff options
context:
space:
mode:
authorDana Robinson <43805+derobins@users.noreply.github.com>2023-06-29 19:13:29 (GMT)
committerGitHub <noreply@github.com>2023-06-29 19:13:29 (GMT)
commitfd933f30b1f8cd487ad790ac0b054bb779280a62 (patch)
tree9e366b2c19f1d84e28af4e588daf7bd8c075f8b6 /tools/src/h5perf/pio_perf.c
parentfd56a593b7928da636b2494b25cd7478fed78c29 (diff)
downloadhdf5-fd933f30b1f8cd487ad790ac0b054bb779280a62.zip
hdf5-fd933f30b1f8cd487ad790ac0b054bb779280a62.tar.gz
hdf5-fd933f30b1f8cd487ad790ac0b054bb779280a62.tar.bz2
Remove programmer/date from comments (#3210)
* Removes Programmer: and Date: fields * Fixes a few Modifications: fields leftover from previous work
Diffstat (limited to 'tools/src/h5perf/pio_perf.c')
-rw-r--r--tools/src/h5perf/pio_perf.c17
1 files changed, 0 insertions, 17 deletions
diff --git a/tools/src/h5perf/pio_perf.c b/tools/src/h5perf/pio_perf.c
index b423f0d..295b580 100644
--- a/tools/src/h5perf/pio_perf.c
+++ b/tools/src/h5perf/pio_perf.c
@@ -205,7 +205,6 @@ static off_t squareo(off_t);
* Purpose: Start things up. Initialize MPI and then call the test looping
* function.
* Return: EXIT_SUCCESS or EXIT_FAILURE
- * Programmer: Bill Wendling, 30. October 2001
*/
int
main(int argc, char *argv[])
@@ -301,7 +300,6 @@ squareo(off_t x)
* this out.
*
* Return: Nothing
- * Programmer: Bill Wendling, 30. October 2001
*/
static void
run_test_loop(struct options *opts)
@@ -395,7 +393,6 @@ run_test_loop(struct options *opts)
* Function: run_test
* Purpose: Inner loop call to actually run the I/O test.
* Return: Nothing
- * Programmer: Bill Wendling, 18. December 2001
*/
static int
run_test(iotype iot, parameters parms, struct options *opts)
@@ -710,7 +707,6 @@ run_test(iotype iot, parameters parms, struct options *opts)
* Function: output_all_info
* Purpose:
* Return: Nothing
- * Programmer: Bill Wendling, 29. January 2002
*/
static void
output_all_info(minmax *mm, int count, int indent_level)
@@ -732,7 +728,6 @@ output_all_info(minmax *mm, int count, int indent_level)
* Purpose: Process environment variables setting to set up MPI Info
* object.
* Return: 0 if all is fine; otherwise non-zero.
- * Programmer: Albert Cheng, 2002/05/21.
*/
int
h5_set_info_object(void)
@@ -824,7 +819,6 @@ h5_set_info_object(void)
* Function: h5_dump_info_object
* Purpose: Display content of an MPI Info object
* Return: void
- * Programmer: Albert Cheng 2002/05/21
*/
void
h5_dump_info_object(MPI_Info info)
@@ -853,7 +847,6 @@ h5_dump_info_object(MPI_Info info)
* Function: get_minmax
* Purpose: Gather all the min, max and total of val.
* Return: Nothing
- * Programmer: Bill Wendling, 21. December 2001
*/
static void
get_minmax(minmax *mm, double val)
@@ -873,7 +866,6 @@ get_minmax(minmax *mm, double val)
* Purpose: Accumulate the minimum, maximum, and average of the times
* across all processes.
* Return: TOTAL_MM - the total of all of these.
- * Programmer: Bill Wendling, 21. December 2001
*/
static minmax
accumulate_minmax_stuff(minmax *mm, int count)
@@ -907,7 +899,6 @@ accumulate_minmax_stuff(minmax *mm, int count)
* is a global variable.
* Return: SUCCESS on success.
* FAIL otherwise.
- * Programmer: Bill Wendling, 19. December 2001
*/
static int
create_comm_world(int num_procs, int *doing_pio)
@@ -965,7 +956,6 @@ error_done:
* pio_comm_g global variable.
* Return: SUCCESS on success.
* FAIL otherwise.
- * Programmer: Bill Wendling, 19. December 2001
*/
static int
destroy_comm_world(void)
@@ -984,7 +974,6 @@ destroy_comm_world(void)
* Purpose: Print information about the time & bandwidth for a given
* minmax & # of iterations.
* Return: Nothing
- * Programmer: Quincey Koziol, 9. May 2002
*/
static void
output_results(const struct options *opts, const char *name, minmax *table, int table_size, off_t data_size)
@@ -1047,7 +1036,6 @@ output_times(const struct options *opts, const char *name, minmax *table, int ta
* Function: output_report
* Purpose: Print a line of the report. Only do so if I'm the 0 process.
* Return: Nothing
- * Programmer: Bill Wendling, 19. December 2001
*/
static void
output_report(const char *fmt, ...)
@@ -1072,7 +1060,6 @@ output_report(const char *fmt, ...)
* Purpose: Print spaces to indent a new line of text for pretty printing
* things.
* Return: Nothing
- * Programmer: Bill Wendling, 29. October 2001
*/
static void
print_indent(int indent)
@@ -1245,7 +1232,6 @@ report_parameters(struct options *opts)
* Purpose: Parse the command line options and return a STRUCT OPTIONS
* structure which will need to be freed by the calling function.
* Return: Pointer to an OPTIONS structure
- * Programmer: Bill Wendling, 31. October 2001
*/
static struct options *
parse_command_line(int argc, const char *const *argv)
@@ -1495,7 +1481,6 @@ parse_command_line(int argc, const char *const *argv)
* Return: The size as a off_t because this is related to file size.
* If an unknown size indicator is used, then the program will
* exit with EXIT_FAILURE as the return value.
- * Programmer: Bill Wendling, 18. December 2001
*/
static off_t
parse_size_directive(const char *size)
@@ -1535,7 +1520,6 @@ parse_size_directive(const char *size)
* Function: usage
* Purpose: Print a usage message and then exit.
* Return: Nothing
- * Programmer: Bill Wendling, 31. October 2001
*/
static void
usage(const char *prog)
@@ -1675,7 +1659,6 @@ usage(const char *prog)
* Purpose: Dummy main() function for if HDF5 was configured without
* parallel stuff.
* Return: EXIT_SUCCESS
- * Programmer: Bill Wendling, 14. November 2001
*/
int
main(void)