This is an automated email from the ASF dual-hosted git repository.
mboehm7 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/systemds.git
The following commit(s) were added to refs/heads/master by this push:
new fe0965a [MINOR] Fix paramserv builtin docs (invalid example code)
fe0965a is described below
commit fe0965a7f4f8c632526d2969f73beda18b5e7709
Author: 异或和 <[email protected]>
AuthorDate: Fri Jul 16 17:31:04 2021 +0200
[MINOR] Fix paramserv builtin docs (invalid example code)
Closes #1345.
---
docs/site/dml-language-reference.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/docs/site/dml-language-reference.md
b/docs/site/dml-language-reference.md
index 1655a7b..31d3aba 100644
--- a/docs/site/dml-language-reference.md
+++ b/docs/site/dml-language-reference.md
@@ -1638,7 +1638,7 @@ Scheme | Definition
-------- | -----------
Disjoint_Contiguous | For each worker, use a right indexing operation
X[beg:end,] to obtain contiguous, non-overlapping partitions of rows
Disjoint_Round_Robin | For each worker, use a permutation multiply or simpler
a removeEmpty such as removeEmpty(target=X, margin=rows,
select=(seq(1,nrow(X))%%k)==id)
-Disjoint_Random | For each worker, use a permutation multiply P[beg:end,] %*%
X, where P is constructed for example with
P=table(seq(1,nrow(X),sample(nrow(X), nrow(X)))), i.e., sampling without
replacement to ensure disjointness
+Disjoint_Random | For each worker, use a permutation multiply P[beg:end,] %*%
X, where P is constructed for example with
P=table(seq(1,nrow(X)),sample(nrow(X), nrow(X))), i.e., sampling without
replacement to ensure disjointness
Overlap_Reshuffle | Similar to the above, except to create a new permutation
matrix for each worker and without the indexing on P
### Other Built-In Functions