From b1771368a56258c251fc783becd8c6f6aa3fe4ae Mon Sep 17 00:00:00 2001 From: zyfncg Date: Thu, 22 Sep 2022 10:30:20 +0800 Subject: [PATCH] fix compile problem (#46354) --- paddle/fluid/framework/CMakeLists.txt | 4 ++-- paddle/fluid/framework/convert_utils.h | 3 --- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/paddle/fluid/framework/CMakeLists.txt b/paddle/fluid/framework/CMakeLists.txt index 7434557a3ca..2729c090659 100755 --- a/paddle/fluid/framework/CMakeLists.txt +++ b/paddle/fluid/framework/CMakeLists.txt @@ -425,7 +425,7 @@ cc_library( cc_library( shape_inference SRCS shape_inference.cc - DEPS ddim attribute) + DEPS ddim attribute selected_rows_utils) # every source file that includes "dnnl.h" must depends on mkldnn # or, the first one should depends on mkldnn @@ -1127,7 +1127,7 @@ cc_test( cc_library( selected_rows_utils SRCS selected_rows_utils.cc - DEPS selected_rows serialization) + DEPS selected_rows serialization device_context) cc_test( selected_rows_utils_test SRCS selected_rows_utils_test.cc diff --git a/paddle/fluid/framework/convert_utils.h b/paddle/fluid/framework/convert_utils.h index da2af86c77c..a11eafd8af2 100644 --- a/paddle/fluid/framework/convert_utils.h +++ b/paddle/fluid/framework/convert_utils.h @@ -19,10 +19,7 @@ limitations under the License. */ #include "paddle/phi/common/layout.h" #include "paddle/phi/core/tensor_meta.h" -// See Note [ Why still include the fluid headers? ] #include "paddle/fluid/framework/data_type.h" -#include "paddle/fluid/framework/lod_tensor.h" -#include "paddle/fluid/platform/place.h" // TODO(chenweihang): this file may need to be removed -- GitLab