From 8c78162d77ce19b84df0941d9a07a92facefcab9 Mon Sep 17 00:00:00 2001 From: Jordan Ogas Date: Mon, 1 Apr 2024 13:18:49 -0600 Subject: [PATCH] bitterly comply with sphinx --- doc/faq.rst | 31 +++++++++++++++---------------- 1 file changed, 15 insertions(+), 16 deletions(-) diff --git a/doc/faq.rst b/doc/faq.rst index a370c6eb1..187c114ba 100644 --- a/doc/faq.rst +++ b/doc/faq.rst @@ -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