Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion docker/common/install_nixl.sh
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,8 @@ meson setup builddir \
-Dcudapath_lib="$CUDA_PATH/lib64" \
-Dcudapath_inc="$CUDA_PATH/include" \
-Dgds_path="$GDS_PATH" \
-Dinstall_headers=true
-Dinstall_headers=true \
--buildtype=release
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nice change.
Please Note that when building NIXL in release mode, we should also set the plugins path.

For example:

export NIXL_PLUGIN_DIR=/opt/nvidia/nvda_nixl/lib/x86_64-linux-gnu/plugins


cd builddir && ninja install
cd ../..
Expand Down
Loading