From 4addbef8c9ca31d98310dcdead94d05324847fc3 Mon Sep 17 00:00:00 2001 From: Tao Luo Date: Mon, 29 Oct 2018 13:58:19 +0800 Subject: [PATCH] add warning when ON_INFER is OFF test=develop --- CMakeLists.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 67e1c6d7c1e..97af6192cb8 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -307,4 +307,7 @@ endif() if (ON_INFER) message(STATUS "On inference mode, will take place some specific optimization.") add_definitions(-DPADDLE_ON_INFERENCE) +else() + #TODO(luotao), combine this warning with `make inference_lib_dist` command. + message(WARNING "On inference mode, will take place some specific optimization. Only used in make inference_lib_dist.") endif() -- GitLab