Skip to content

Commit

Permalink
benchmark development
Browse files Browse the repository at this point in the history
  • Loading branch information
edhartnett committed Mar 1, 2019
1 parent 7cccd5e commit f4e962b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/cunit/test_perf1.c
Original file line number Diff line number Diff line change
Expand Up @@ -365,8 +365,8 @@ int run_benchmark(int iosysid, int num_flavors, int *flavor, int my_rank,
}

int
run_benchmarks(MPI_Comm test_comm, int my_rank, int num_flavors, int *flavor,
int num_rearr, int *rearranger)
run_some_benchmarks(MPI_Comm test_comm, int my_rank, int num_flavors, int *flavor,
int num_rearr, int *rearranger)
{
/* Only do something on max_ntasks tasks. */
if (my_rank < TARGET_NTASKS)
Expand Down Expand Up @@ -424,8 +424,8 @@ int main(int argc, char **argv)
ERR(ret);

/* Run a benchmark. */
if ((ret = run_benchmarks(test_comm, my_rank, num_flavors, flavor, NUM_REARRANGERS_TO_TEST,
rearranger)))
if ((ret = run_some_benchmarks(test_comm, my_rank, num_flavors, flavor, NUM_REARRANGERS_TO_TEST,
rearranger)))
ERR(ret);

/* Finalize the MPI library. */
Expand Down

0 comments on commit f4e962b

Please sign in to comment.