From 7c03145ad0f2c43e7e67c5343f474ca57958ea81 Mon Sep 17 00:00:00 2001 From: Arun Karthik Date: Thu, 29 Aug 2024 00:19:37 +0000 Subject: [PATCH] tuner: Enable tuner init msg on INFO logs Enable tuner initialization message to be displayed on all NCCL_DEBUG=INFO and display the logs as part of the default subsystem (INIT) Signed-off-by: Arun Karthik --- src/tuner/nccl_ofi_tuner.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tuner/nccl_ofi_tuner.c b/src/tuner/nccl_ofi_tuner.c index 603f1e000..5f7d26414 100644 --- a/src/tuner/nccl_ofi_tuner.c +++ b/src/tuner/nccl_ofi_tuner.c @@ -291,7 +291,7 @@ ncclResult_t nccl_ofi_tuner_init(size_t nRanks, size_t nNodes, ncclDebugLogger_t *context = (void *)nccl_ofi_tuner_ctx; nccl_net_ofi_mutex_unlock(&nccl_ofi_tuner_ctx_lock); - NCCL_OFI_TRACE(NCCL_TUNING, "Tuner init: comm with %ld ranks and %ld nodes.", nRanks, nNodes); + NCCL_OFI_INFO(NCCL_INIT | NCCL_TUNING, "Tuner init: comm with %ld ranks and %ld nodes.", nRanks, nNodes); return ret; }