Open Andrew-S-Rosen opened 8 months ago
The docs state
By default Dask will run one Python process per job
However, the docstring for processes says by default it is sqrt(cores). I suppose if cores is 1, the first statement is indeed true, but it can give a false impression.
processes
Once again you are right, documentation should be updated, since we rely on https://github.com/dask/distributed/blob/main/distributed/deploy/utils.py#L16 to compute the default number of processes.
The docs state
However, the docstring for
processes
says by default it is sqrt(cores). I suppose if cores is 1, the first statement is indeed true, but it can give a false impression.