diff options
author | deshevoy <deshevoy@yandex-team.com> | 2024-06-09 19:12:05 +0300 |
---|---|---|
committer | deshevoy <deshevoy@yandex-team.com> | 2024-06-09 19:25:39 +0300 |
commit | c191ecd15978bda625d24c6cd94e63618fa0174f (patch) | |
tree | 63db0f04db4aada310b8e07293c24a2ca24d8335 | |
parent | 0d86049b43a82faa56ca2314d64d8c3e9508a61b (diff) | |
download | ydb-c191ecd15978bda625d24c6cd94e63618fa0174f.tar.gz |
[build] link_exe: Add NPP libs to CUDA_LIBRARIES
4ef12dd52c1d38cd7a1018ec1bc40800644ea775
-rw-r--r-- | build/scripts/link_exe.py | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/build/scripts/link_exe.py b/build/scripts/link_exe.py index 259d2b27d7..25fe116652 100644 --- a/build/scripts/link_exe.py +++ b/build/scripts/link_exe.py @@ -46,6 +46,18 @@ CUDA_LIBRARIES = { '-lnvrtc_static': '-lnvrtc', '-lnvrtc-builtins_static': '-lnvrtc-builtins', '-lnvptxcompiler_static': '', + '-lnppc_static': '-lnppc', + '-lnppial_static': '-lnppial', + '-lnppicc_static': '-lnppicc', + '-lnppicom_static': '-lnppicom', + '-lnppidei_static': '-lnppidei', + '-lnppif_static': '-lnppif', + '-lnppig_static': '-lnppig', + '-lnppim_static': '-lnppim', + '-lnppist_static': '-lnppist', + '-lnppisu_static': '-lnppisu', + '-lnppitc_static': '-lnppitc', + '-lnpps_static': '-lnpps', } @@ -70,7 +82,8 @@ class CUDAManager: def _known_fatbin_libs(self, libs): libs_wo_device_code = { - '-lcudart_static' + '-lcudart_static', + '-lnppc_static', } return set(libs) - libs_wo_device_code |