Skip to content

Commit 38c69e7

Browse files
committed
PR tensorflow#22529: [ROCm] Fix link error with rccl by adding libnuma link dependency
Imported from GitHub PR openxla/xla#22529 Copybara import of the project: -- ac9f1c5a398b06752daabdd5af7c19fdf3a809a4 by Harsha HS <Harsha.HavanurShamsundara@amd.com>: [ROCm] Fix link error with rccl by adding libnuma link dependency Merging this change closes tensorflow#22529 PiperOrigin-RevId: 725989942
1 parent 3136d10 commit 38c69e7

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

third_party/gpus/rocm/BUILD.tpl

+5-1
Original file line numberDiff line numberDiff line change
@@ -249,10 +249,14 @@ cc_library(
249249
includes = [
250250
"%{rocm_root}/include",
251251
],
252+
linkopts = ["-lnuma"],
252253
linkstatic = 1,
253254
strip_include_prefix = "%{rocm_root}",
254255
visibility = ["//visibility:public"],
255-
deps = [":rocm_config"],
256+
deps = [
257+
":rocm_config",
258+
":system_libs",
259+
],
256260
)
257261

258262
bzl_library(

third_party/xla/third_party/tsl/third_party/gpus/rocm/BUILD.tpl

+5-1
Original file line numberDiff line numberDiff line change
@@ -249,10 +249,14 @@ cc_library(
249249
includes = [
250250
"%{rocm_root}/include",
251251
],
252+
linkopts = ["-lnuma"],
252253
linkstatic = 1,
253254
strip_include_prefix = "%{rocm_root}",
254255
visibility = ["//visibility:public"],
255-
deps = [":rocm_config"],
256+
deps = [
257+
":rocm_config",
258+
":system_libs",
259+
],
256260
)
257261

258262
bzl_library(

0 commit comments

Comments
 (0)