You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/configuration.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -214,7 +214,7 @@ Note that `batch_size` is not currently supported for Lithops.
214
214
| `region` | N/A | The cloud region to run in. This must be set to match the region of your cloud store to avoid data transfer fees. See Modal's [Region selection](https://modal.com/docs/guide/region-selection) page for possible values. |
215
215
| `retries` | 2 | The number of times to retry a task if it fails. |
216
216
| `timeout` | 180 | Tasks that take longer than the timeout will be automatically killed and retried. |
217
-
| `enable_output` | False | Print Modal output to stdout and stderr things for debuggging. |
217
+
| `enable_output` | False | Print Modal output to stdout and stderr things for debugging. |
218
218
| `use_backups` | `True` | Whether to use backup tasks for mitigating stragglers. |
219
219
| `batch_size` | `None` | Number of input tasks to submit to be run in parallel. The default is not to batch. |
220
220
| `compute_arrays_in_parallel` | `False` | Whether arrays are computed one at a time or in parallel. |
Copy file name to clipboardExpand all lines: docs/operations.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -92,7 +92,7 @@ The `reduction` operation reduces an array along one or more axes.
92
92
*__Single__ input, __single__ output
93
93
94
94
It is a core operation that is implemented using a `blockwise` operation called `partial_reduce` that reads multiple blocks and performs the reduction operation on them.
95
-
The `partial_reduce` operations are arranged in a tree (`tree_reduce`) with multiple rounds until there's a single block in each reduction axis. Finally an aggregrate`blockwise` operation is applied to the results.
95
+
The `partial_reduce` operations are arranged in a tree (`tree_reduce`) with multiple rounds until there's a single block in each reduction axis. Finally an aggregate`blockwise` operation is applied to the results.
96
96
97
97
Here is an example of reducing over the first axis, with two rounds of `partial_reduce` operations:
0 commit comments