Skip to content

Commit 5064040

Browse files
committed
coll/tuned: Fix typos
Signed-off-by: William Zhang <wilzhang@amazon.com>
1 parent 5929ee5 commit 5064040

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

ompi/mca/coll/tuned/coll_tuned_dynamic_file.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,14 +90,14 @@ int ompi_coll_tuned_read_rules_config_file (char *fname, ompi_coll_alg_rule_t**
9090

9191
fptr = fopen (fname, "r");
9292
if (!fptr) {
93-
OPAL_OUTPUT((ompi_coll_tuned_stream,"cannot read rules file [%s]\n", fname));
93+
OPAL_OUTPUT((ompi_coll_tuned_stream,"Cannot read rules file [%s]\n", fname));
9494
goto on_file_error;
9595
}
9696

9797
/* make space and init the algorithm rules for each of the n_collectives MPI collectives */
9898
alg_rules = ompi_coll_tuned_mk_alg_rules (n_collectives);
9999
if (NULL == alg_rules) {
100-
OPAL_OUTPUT((ompi_coll_tuned_stream,"cannot cannot allocate rules for file [%s]\n", fname));
100+
OPAL_OUTPUT((ompi_coll_tuned_stream,"Cannot allocate rules for file [%s]\n", fname));
101101
goto on_file_error;
102102
}
103103

ompi/mca/coll/tuned/coll_tuned_module.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ ompi_coll_tuned_comm_query(struct ompi_communicator_t *comm, int *priority)
9191
tuned_module->super.coll_module_enable = tuned_module_enable;
9292
tuned_module->super.ft_event = mca_coll_tuned_ft_event;
9393

94-
/* By default stick with the fied version of the tuned collectives. Later on,
94+
/* By default stick with the fixed version of the tuned collectives. Later on,
9595
* when the module get enabled, set the correct version based on the availability
9696
* of the dynamic rules.
9797
*/

0 commit comments

Comments
 (0)