diff options
author | Thomas White <taw@physics.org> | 2018-11-08 20:23:34 +0100 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2018-11-09 10:48:07 +0100 |
commit | 8db6816f50cde83c5ad9bb8a763a8b2350571d38 (patch) | |
tree | 9354c436421b7a27c01c825e82cb6bbe18ee13c6 | |
parent | 0ec816963525addca72068b98d3436de2d658ef7 (diff) |
Time account fussiness
-rw-r--r-- | src/im-sandbox.c | 2 | ||||
-rw-r--r-- | src/time-accounts.c | 4 |
2 files changed, 2 insertions, 4 deletions
diff --git a/src/im-sandbox.c b/src/im-sandbox.c index c6071586..87fd8fe7 100644 --- a/src/im-sandbox.c +++ b/src/im-sandbox.c @@ -1083,8 +1083,6 @@ void create_sandbox(struct index_args *iargs, int n_proc, char *prefix, } while ( !allDone ); - if ( iargs->profile ) time_accounts_print(taccs); - fclose(fh); /* Indicate to the workers that we are finished, and wake them up one diff --git a/src/time-accounts.c b/src/time-accounts.c index d3e989fa..15a984cd 100644 --- a/src/time-accounts.c +++ b/src/time-accounts.c @@ -173,8 +173,8 @@ static const char *taccname(enum timeaccount acc) case TACC_ENDCHECK : return "Checking end"; case TACC_WAKEUP : return "Waking up workers"; case TACC_WAITPID : return "Waiting on workers"; - case TACC_HDF5OPEN : return "Opening HDF5 file"; - case TACC_HDF5READ : return "Reading HDF5 file"; + case TACC_HDF5OPEN : return "Opening image file"; + case TACC_HDF5READ : return "Reading image file"; case TACC_FILTER : return "Image filters"; case TACC_RESRANGE : return "Resolution range"; case TACC_PEAKSEARCH : return "Peak search"; |