File tree Expand file tree Collapse file tree 2 files changed +7
-6
lines changed
data_objects/selection_objects Expand file tree Collapse file tree 2 files changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -536,9 +536,9 @@ def piter(
536536 from each processor.
537537 - None: no reduction will be applied and the storage object will
538538 contain one result per chunk in the container.
539- - concat : the storage object will contain a flattened list of
540- each results .
541- - cat_on_root: same as concat , but only the root processor will
539+ - cat : the storage object will contain a flattened list of
540+ each result .
541+ - cat_on_root: same as cat , but only the root processor will
542542 contain anything.
543543 - sum, min, max: the storage object will contain the result
544544 of applying the operation until getting a single value.
Original file line number Diff line number Diff line change @@ -517,9 +517,9 @@ def parallel_objects(
517517 from each processor.
518518 - None: no reduction will be applied and the storage object will
519519 contain one result per chunk in the container.
520- - concat : the storage object will contain a flattened list of
521- each results .
522- - cat_on_root: same as concat , but only the root processor will
520+ - cat : the storage object will contain a flattened list of
521+ each result .
522+ - cat_on_root: same as cat , but only the root processor will
523523 contain anything.
524524 - sum, min, max: the storage object will contain the result
525525 of applying the operation until getting a single value.
@@ -1017,6 +1017,7 @@ def concat(
10171017 ):
10181018 """
10191019 Concatenate all the values of data and send them to the root.
1020+ This returns None on all other processors.
10201021
10211022 Notes:
10221023 ------
You can’t perform that action at this time.
0 commit comments