Skip to content
This repository has been archived by the owner on Oct 2, 2024. It is now read-only.

Commit

Permalink
bitterly comply with sphinx
Browse files Browse the repository at this point in the history
  • Loading branch information
j-ogas committed Apr 1, 2024
1 parent 020f6be commit 8c78162
Showing 1 changed file with 15 additions and 16 deletions.
31 changes: 15 additions & 16 deletions doc/faq.rst
Original file line number Diff line number Diff line change
Expand Up @@ -120,22 +120,21 @@ The following snippet is from our Libfabric example,

::
ARG LIBFABRIC_VERSION=${OFI_VERSION}
RUN git clone --branch v${LIBFABRIC_VERSION} --depth 1 \
https://github.com/ofiwg/libfabric/ \
&& cd libfabric \
&& ./autogen.sh \
&& ./configure --prefix=/usr/local \
--disable-opx \
--disable-psm2 \
--disable-efa \
--disable-sockets \
--enable-psm3 \
--enable-rxm \
--enable-shm \
--enable-tcp \
--enable-verbs \
&& make -j$(getconf _NPROCESSORS_ONLN) install \
&& rm -Rf ../libfabric*
RUN git clone --branch v${LIBFABRIC_VERSION} --depth 1 https://github.com/ofiwg/libfabric/ \
&& cd libfabric \
&& ./autogen.sh \
&& ./configure --prefix=/usr/local \
--disable-opx \
--disable-psm2 \
--disable-efa \
--disable-sockets \
--enable-psm3 \
--enable-rxm \
--enable-shm \
--enable-tcp \
--enable-verbs \
&& make -j$(getconf _NPROCESSORS_ONLN) install \
&& rm -Rf ../libfabric*

The above compiles Libfabric with several "built-in" providers, e.g.,
:code:`psm3`, :code:`rxm`, :code:`shm`, :code:`tcp`, and :code:`verbs`, which
Expand Down

0 comments on commit 8c78162

Please sign in to comment.