From 950bb16be77ca43669adb05204b5ada26e7d8278 Mon Sep 17 00:00:00 2001 From: tensor-tang Date: Mon, 5 Nov 2018 07:50:27 +0000 Subject: [PATCH] remove the warning log since do not have avx2, avx512 flags test=release/1.1 --- paddle/fluid/platform/init.cc | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/paddle/fluid/platform/init.cc b/paddle/fluid/platform/init.cc index 17d3af7bee5..07abe1dd5c4 100644 --- a/paddle/fluid/platform/init.cc +++ b/paddle/fluid/platform/init.cc @@ -116,16 +116,6 @@ void InitDevices(bool init_p2p, const std::vector devices) { platform::SetNumThreads(FLAGS_paddle_num_threads); #endif - if (platform::jit::MayIUse(platform::jit::avx512f)) { -#ifndef __AVX512F__ - LOG(WARNING) << "AVX512F is available, Please re-compile on local machine"; -#endif - } - if (platform::jit::MayIUse(platform::jit::avx2)) { -#ifndef __AVX2__ - LOG(WARNING) << "AVX2 is available, Please re-compile on local machine"; -#endif - } if (platform::jit::MayIUse(platform::jit::avx)) { #ifndef __AVX__ LOG(WARNING) << "AVX is available, Please re-compile on local machine"; -- GitLab