From 090a913252914fc23a599cd79e00b9cdabd2526b Mon Sep 17 00:00:00 2001 From: niuliling123 <51102941+niuliling123@users.noreply.github.com> Date: Tue, 21 Jun 2022 14:24:10 +0800 Subject: [PATCH] delete the log printing in layout autotune (#43677) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 删除 layout autotune 中的多余打印 背景 :layout autotune log会导致模型打印信息增多 --- paddle/fluid/imperative/layout_autotune.cc | 1 - 1 file changed, 1 deletion(-) diff --git a/paddle/fluid/imperative/layout_autotune.cc b/paddle/fluid/imperative/layout_autotune.cc index ed0526eaad3..5967cf9a23f 100644 --- a/paddle/fluid/imperative/layout_autotune.cc +++ b/paddle/fluid/imperative/layout_autotune.cc @@ -25,7 +25,6 @@ namespace imperative { bool LayoutAutoTune::UseLayoutAutoTune() const { #if defined(PADDLE_WITH_CUDA) if (!phi::backends::gpu::TensorCoreAvailable()) { - LOG(INFO) << "Layout AutoTuning is not available."; return false; } else { return use_layout_autotune_; -- GitLab