From e764cde64563d4ebd5ce822840a80b06e2081298 Mon Sep 17 00:00:00 2001 From: Wilber Date: Thu, 10 Feb 2022 16:46:10 +0800 Subject: [PATCH] fix compile error (#39440) --- paddle/fluid/platform/stream/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/paddle/fluid/platform/stream/CMakeLists.txt b/paddle/fluid/platform/stream/CMakeLists.txt index cf219caa9f5..d38a0c3c21f 100644 --- a/paddle/fluid/platform/stream/CMakeLists.txt +++ b/paddle/fluid/platform/stream/CMakeLists.txt @@ -5,7 +5,7 @@ ELSE() ENDIF() IF(WITH_GPU OR WITH_ROCM) -cc_library(cuda_stream SRCS cuda_stream.cc DEPS enforce boost ${MKLDNN_CTX_DEPS}) +cc_library(cuda_stream SRCS cuda_stream.cc DEPS enforce boost eigen3 ${MKLDNN_CTX_DEPS}) ENDIF() IF(WITH_ASCEND_CL) -- GitLab