Unverified Commit 2405bac7 authored by Anant Sharma's avatar Anant Sharma Committed by GitHub
Browse files

fix: use release build for ucx (#4345)


Signed-off-by: default avatarAnant Sharma <anants@nvidia.com>
parent a4eb4e8a
...@@ -248,20 +248,21 @@ RUN --mount=type=secret,id=aws-key-id,env=AWS_ACCESS_KEY_ID \ ...@@ -248,20 +248,21 @@ RUN --mount=type=secret,id=aws-key-id,env=AWS_ACCESS_KEY_ID \
git clone https://github.com/openucx/ucx.git && \ git clone https://github.com/openucx/ucx.git && \
cd ucx && \ cd ucx && \
git checkout $NIXL_UCX_REF && \ git checkout $NIXL_UCX_REF && \
./autogen.sh && ./configure \ ./autogen.sh && \
--prefix=/usr/local/ucx \ ./contrib/configure-release \
--enable-shared \ --prefix=/usr/local/ucx \
--disable-static \ --enable-shared \
--disable-doxygen-doc \ --disable-static \
--enable-optimizations \ --disable-doxygen-doc \
--enable-cma \ --enable-optimizations \
--enable-devel-headers \ --enable-cma \
--with-cuda=/usr/local/cuda \ --enable-devel-headers \
--with-verbs \ --with-cuda=/usr/local/cuda \
--with-dm \ --with-verbs \
--with-gdrcopy=/usr/local \ --with-dm \
--with-efa \ --with-gdrcopy=/usr/local \
--enable-mt && \ --with-efa \
--enable-mt && \
make -j && \ make -j && \
make -j install-strip && \ make -j install-strip && \
/tmp/use-sccache.sh show-stats "UCX" && \ /tmp/use-sccache.sh show-stats "UCX" && \
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment