Skip to content

Commit

Permalink
Remove reference to "get" scheduler functions in docs [skip ci] (dask…
Browse files Browse the repository at this point in the history
  • Loading branch information
mrocklin committed Jan 3, 2019
1 parent 7af6fea commit 2ca205b
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions docs/source/setup/single-machine.rst
Expand Up @@ -35,13 +35,14 @@ use this scheduler. However, you do have a choice between threads and processes:
Selecting Threads, Processes, or Single Threaded
------------------------------------------------

Currently, these options are available by selecting different ``get`` functions:
You can select between these options by specifying one of the following three
values to the ``scheduler=`` keyword:

- ``dask.threaded.get``: The threaded scheduler
- ``dask.multiprocessing.get``: The multiprocessing scheduler
- ``dask.local.get_sync``: The single-threaded scheduler
- ``"threads"``: Uses a ThreadPool in the local process
- ``"processes"``: Uses a ProcessPool to spread work between processes
- ``"single-threaded"``: Uses a for-loop in the current thread

You can specify these functions in any of the following ways:
You can specify these options in any of the following ways:

- When calling ``.compute()``

Expand Down

0 comments on commit 2ca205b

Please sign in to comment.