From edea320c273c9fe884e69675b608f7bd7a67946c Mon Sep 17 00:00:00 2001 From: shanfeng Date: Tue, 30 Apr 2024 17:13:19 +0800 Subject: [PATCH] [bugfix] modify log level Signed-off-by: shanfeng --- .../ccsrc/backend/common/mem_reuse/mem_dynamic_allocator.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mindspore/ccsrc/backend/common/mem_reuse/mem_dynamic_allocator.cc b/mindspore/ccsrc/backend/common/mem_reuse/mem_dynamic_allocator.cc index f7ddf5c2bbab..8d1f71fd4040 100644 --- a/mindspore/ccsrc/backend/common/mem_reuse/mem_dynamic_allocator.cc +++ b/mindspore/ccsrc/backend/common/mem_reuse/mem_dynamic_allocator.cc @@ -282,7 +282,7 @@ void DynamicMemPoolBestFit::SetMemAllocUintSize(size_t common_size, size_t persi persistent_mem_->unit_size_ = persist_size; common_mem_->unit_size_ = common_size; config_unit_size_ = common_size; - MS_LOG(INFO) << "Set mem alloc unit size, common " << common_size << " persistent " << persist_size; + MS_LOG(DEBUG) << "Set mem alloc unit size, common " << common_size << " persistent " << persist_size; } void *DynamicMemPoolBestFit::GetMinUsingMemoryAddr() const { -- Gitee