From 2f860bf6d452601e2b4745a1881f937defc9efd6 Mon Sep 17 00:00:00 2001 From: Erik Welch Date: Thu, 15 Jul 2021 23:41:28 -0500 Subject: [PATCH] edit --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 68958d0..56f9a85 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ with afar.run, remotely: df = dask_cudf.read_parquet("s3://...") result = df.sum().compute() ``` -`result` is a [Dask Future](https://docs.dask.org/en/latest/futures.html) whose data resides on a worker. `result.result()` is necessary to copy the data locally. +Outside the context, `result` is a [Dask Future](https://docs.dask.org/en/latest/futures.html) whose data resides on a worker. `result.result()` is necessary to copy the data locally. By default, only the last assignment is saved. One can specify which variables to save: ```python @@ -37,4 +37,4 @@ assert data["c"].result() == 3 For motivation, see https://github.com/dask/distributed/issues/4003 -### *This code is highly experimental and magical!* \ No newline at end of file +### *This code is highly experimental and magical!*