Skip to content

Commit 641b6d6

Browse files
authored
Merge pull request #11388 from wckzhang/destory
btl/ugni accelerator/cuda: Fix typo Destory -> Destroy
2 parents a45eda2 + 67e587a commit 641b6d6

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

opal/mca/accelerator/cuda/help-accelerator-cuda.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -162,9 +162,9 @@ cause the program to abort.
162162
Check the cuda.h file for what the return value means.
163163
#
164164
[cuEventDestroy failed]
165-
The call to cuEventDestory failed. This is a unrecoverable error and will
165+
The call to cuEventDestroy failed. This is a unrecoverable error and will
166166
cause the program to abort.
167-
cuEventDestory return value: %d
167+
cuEventDestroy return value: %d
168168
Check the cuda.h file for what the return value means.
169169
#
170170
[cuStreamCreate failed]

opal/mca/btl/ugni/btl_ugni_progress_thread.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ int mca_btl_ugni_spawn_progress_thread(struct mca_btl_base_module_t *btl)
8585

8686
rc = pthread_attr_destroy(&attr);
8787
if (0 != rc) {
88-
BTL_ERROR(("btl/ugni pthread_attr_destory returned %s ", strerror(rc)));
88+
BTL_ERROR(("btl/ugni pthread_attr_destroy returned %s ", strerror(rc)));
8989
ret = OPAL_ERROR;
9090
}
9191

0 commit comments

Comments
 (0)