From e6c94008a0d2b3bbb5a9ce022ec56475d978318a Mon Sep 17 00:00:00 2001 From: Benjamin Zaitlen Date: Thu, 22 Oct 2020 08:49:26 -0400 Subject: [PATCH] add link to TCP configuration for dask example --- docs/source/configuration.rst | 2 ++ docs/source/dask.rst | 8 ++++++++ 2 files changed, 10 insertions(+) diff --git a/docs/source/configuration.rst b/docs/source/configuration.rst index b7579990a..ab624f7e7 100644 --- a/docs/source/configuration.rst +++ b/docs/source/configuration.rst @@ -74,6 +74,8 @@ Values: - ``get_zcopy`` - ``auto`` (default) +.. _tcp-config: + UCX_TCP_RX_SEG_SIZE ``````````````````` diff --git a/docs/source/dask.rst b/docs/source/dask.rst index fc62a14f7..da5a71cce 100644 --- a/docs/source/dask.rst +++ b/docs/source/dask.rst @@ -4,6 +4,14 @@ Using with Dask ``UCX/UCX-Py`` can be used with `Dask `_ as a drop-in replacement for the communication protocol between workers. Below we show how to use UCX-Py with both helper utilities such as `dask-cuda `_ and manually starting a dask cluster with UCX enabled. Additionally, we demonstrate using UCX with a `cuDF Example`_ and `CuPy Example`_. + +.. note:: + + If using TCP without NVLink or Infiniband, TCP alone may require additional configuration + settings. Please consult the :ref:`TCP Configuration` reference + + + Starting with Dask-cuda -----------------------