We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 41a0263 commit e725601Copy full SHA for e725601
src/pydvl/utils/parallel/map_reduce.py
@@ -62,8 +62,8 @@ class MapReduceJob(Generic[T, R]):
62
jobs, splitting the data into the same number of chunks, one for each job.
63
64
It repeats the process num_runs times, allocating jobs across runs. E.g.
65
- if n_jobs = 90 and num_runs=10, each whole execution of fun uses 9 jobs,
66
- with the data split evenly among them. If n_jobs=2 and num_runs=10, two
+ if n_jobs = 90 and n_runs=10, each whole execution of fun uses 9 jobs,
+ with the data split evenly among them. If n_jobs=2 and n_runs=10, two
67
cores are used, five times in succession, and each job receives all data.
68
69
Results are aggregated per run using `reduce_func`, but **not across runs**.
0 commit comments