From d367941cc43e796e1402a0d190ddf4ef68510903 Mon Sep 17 00:00:00 2001 From: Tixxx Date: Wed, 13 Jan 2021 15:12:04 -0800 Subject: [PATCH] changed wording. (#6337) --- .../orttraining/core/framework/communication/mpi/mpi_context.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/orttraining/orttraining/core/framework/communication/mpi/mpi_context.cc b/orttraining/orttraining/core/framework/communication/mpi/mpi_context.cc index 0deaf5f8e9..2140e60bfc 100644 --- a/orttraining/orttraining/core/framework/communication/mpi/mpi_context.cc +++ b/orttraining/orttraining/core/framework/communication/mpi/mpi_context.cc @@ -28,7 +28,7 @@ MPIContext::~MPIContext() { std::this_thread::sleep_for(std::chrono::seconds(MPIContext::MPI_TIMEOUT_IN_SECONDS)); if (!perform_graceful_exit) { LOGS(logger_, INFO) << "MPI is not able to gracefully shut down. Aborting MPI."; - // Request to cancel the thread since it's hanging. + // Request to cancel the thread since it's not responsive. pthread_t native_handle = release_func_executor_thread.native_handle(); pthread_cancel(native_handle); }