Skip to content

Commit 36747cc

Browse files
committed
io/ompio: disable the fcoll timing by default
somehow the flag indicating to gather performance data on collective io operations has changed to 1 accidentally. Should be 0 ( false) by default. Signed-off-by: Edgar Gabriel <[email protected]>
1 parent aae8c6c commit 36747cc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ompi/mca/io/ompio/io_ompio.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ OMPI_DECLSPEC extern int mca_io_ompio_coll_timing_info;
7272

7373
#define QUEUESIZE 2048
7474
#define MCA_IO_DEFAULT_FILE_VIEW_SIZE 4*1024*1024
75-
#define OMPIO_FCOLL_WANT_TIME_BREAKDOWN 1
75+
#define OMPIO_FCOLL_WANT_TIME_BREAKDOWN 0
7676

7777
#define OMPIO_MIN(a, b) (((a) < (b)) ? (a) : (b))
7878
#define OMPIO_MAX(a, b) (((a) < (b)) ? (b) : (a))

0 commit comments

Comments
 (0)