We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e4a295c commit b49d5efCopy full SHA for b49d5ef
docker/common/install_nixl.sh
@@ -4,6 +4,7 @@ set -ex
4
GITHUB_URL="https://github.com"
5
UCX_INSTALL_PATH="/usr/local/ucx/"
6
CUDA_PATH="/usr/local/cuda"
7
+LIBFABRIC_INSTALL_PATH="/opt/libfabric"
8
NIXL_VERSION="0.7.1"
9
NIXL_REPO="https://github.com/ai-dynamo/nixl.git"
10
OLD_LD_LIBRARY_PATH=$LD_LIBRARY_PATH
@@ -38,7 +39,9 @@ meson setup builddir \
38
39
-Dcudapath_lib="$CUDA_PATH/lib64" \
40
-Dcudapath_inc="$CUDA_PATH/include" \
41
-Dgds_path="$GDS_PATH" \
- -Dinstall_headers=true
42
+ -Dlibfabric_path="$LIBFABRIC_INSTALL_PATH" \
43
+ -Dinstall_headers=true \
44
+ --buildtype=release
45
46
cd builddir && ninja install
47
cd ../..
0 commit comments