You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@systemml.apache.org by ni...@apache.org on 2018/08/30 23:01:53 UTC

systemml git commit: [MINOR] Fixed javadoc errors

Repository: systemml
Updated Branches:
  refs/heads/master 0f36780a8 -> ab251f6ee


[MINOR] Fixed javadoc errors

Project: http://git-wip-us.apache.org/repos/asf/systemml/repo
Commit: http://git-wip-us.apache.org/repos/asf/systemml/commit/ab251f6e
Tree: http://git-wip-us.apache.org/repos/asf/systemml/tree/ab251f6e
Diff: http://git-wip-us.apache.org/repos/asf/systemml/diff/ab251f6e

Branch: refs/heads/master
Commit: ab251f6ee42fe44eabf51483184c95a5a3e472d9
Parents: 0f36780
Author: Niketan Pansare <np...@us.ibm.com>
Authored: Thu Aug 30 15:59:37 2018 -0700
Committer: Niketan Pansare <np...@us.ibm.com>
Committed: Thu Aug 30 15:59:37 2018 -0700

----------------------------------------------------------------------
 .../java/org/apache/sysml/runtime/matrix/data/LibMatrixCUDA.java  | 3 +++
 src/main/java/org/apache/sysml/udf/lib/RemoveDuplicates.java      | 3 +--
 2 files changed, 4 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/systemml/blob/ab251f6e/src/main/java/org/apache/sysml/runtime/matrix/data/LibMatrixCUDA.java
----------------------------------------------------------------------
diff --git a/src/main/java/org/apache/sysml/runtime/matrix/data/LibMatrixCUDA.java b/src/main/java/org/apache/sysml/runtime/matrix/data/LibMatrixCUDA.java
index f3f8434..e2d5824 100644
--- a/src/main/java/org/apache/sysml/runtime/matrix/data/LibMatrixCUDA.java
+++ b/src/main/java/org/apache/sysml/runtime/matrix/data/LibMatrixCUDA.java
@@ -946,6 +946,7 @@ public class LibMatrixCUDA {
 	/**
 	 * Do a simple reduction, the output of which is a single value
 	 * @param gCtx   a valid {@link GPUContext}
+	 * @param instName		  instruction name
 	 * @param kernelFunction 	name of the kernel function to invoke
 	 * @param in							{@link Pointer} to matrix in device memory
 	 * @param n								size of array
@@ -988,6 +989,7 @@ public class LibMatrixCUDA {
 	 * Do a reduction by row. Data is reduced per row and the
 	 * resulting vector is calculated.
 	 * @param gCtx            a valid {@link GPUContext}
+	 * @param instName		  instruction name
 	 * @param kernelFunction 	name of the kernel function to invoke
 	 * @param in							{@link Pointer} to input matrix in device memory (size - rows * columns)
 	 * @param out							{@link Pointer} to output matrix in device memory (size - rows * 1)
@@ -1015,6 +1017,7 @@ public class LibMatrixCUDA {
 	 * Do a reduction by column. Data is reduced per column and the
 	 * resulting vector is calculated.
 	 * @param gCtx            a valid {@link GPUContext}
+	 * @param instName		  instruction name
 	 * @param kernelFunction 	name of the kernel function to invoke
 	 * @param in							{@link Pointer} to input matrix in device memory (size - rows * columns)
 	 * @param out							{@link Pointer} to output matrix in device memory (size - 1 * cols)

http://git-wip-us.apache.org/repos/asf/systemml/blob/ab251f6e/src/main/java/org/apache/sysml/udf/lib/RemoveDuplicates.java
----------------------------------------------------------------------
diff --git a/src/main/java/org/apache/sysml/udf/lib/RemoveDuplicates.java b/src/main/java/org/apache/sysml/udf/lib/RemoveDuplicates.java
index 5c5e0d5..97edadb 100644
--- a/src/main/java/org/apache/sysml/udf/lib/RemoveDuplicates.java
+++ b/src/main/java/org/apache/sysml/udf/lib/RemoveDuplicates.java
@@ -49,12 +49,11 @@ import org.apache.sysml.udf.Matrix.ValueType;
  * W = X*sum(X);
  * inL = list(Y, Z, W)
  * [outL, idx] = distinct(inL);
- * print(">>\n" + toString(idx));
+ * print(toString(idx));
  * </code>
  * </pre>
  * 
  * The above code prints:
- * >>
  * 1.000
  * 2.000
  * 1.000