From 80dfa010ffae4d6640ffc34910fcb83b170b8950 Mon Sep 17 00:00:00 2001 From: Aganlengzi Date: Thu, 27 Jan 2022 10:45:42 +0800 Subject: [PATCH] [NPU] fix aarch64 deps (#39257) --- paddle/fluid/platform/device/npu/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/paddle/fluid/platform/device/npu/CMakeLists.txt b/paddle/fluid/platform/device/npu/CMakeLists.txt index ea739d42bda..52db36d131e 100644 --- a/paddle/fluid/platform/device/npu/CMakeLists.txt +++ b/paddle/fluid/platform/device/npu/CMakeLists.txt @@ -10,6 +10,6 @@ if(WITH_ASCEND_CL) cc_library(npu_info SRCS npu_info.cc DEPS gflags glog enforce monitor ascendcl acl_op_compiler) cc_library(npu_resource_pool SRCS npu_resource_pool.cc DEPS npu_info) cc_library(npu_stream SRCS npu_stream.cc DEPS enforce boost stream_callback_manager) - cc_library(npu_collective_helper SRCS npu_collective_helper.cc DEPS npu_stream npu_info) + cc_library(npu_collective_helper SRCS npu_collective_helper.cc DEPS npu_stream npu_info data_type) cc_library(npu_op_runner SRCS npu_op_runner.cc DEPS operator npu_info) endif() -- GitLab