You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@systemml.apache.org by mb...@apache.org on 2017/07/07 18:48:58 UTC

systemml git commit: [MINOR] Fix misc javadoc issues and compiler warnings

Repository: systemml
Updated Branches:
  refs/heads/master 36effc54d -> 1db240767


[MINOR] Fix misc javadoc issues and compiler warnings

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

Branch: refs/heads/master
Commit: 1db240767ebab1dd645af6debdf0742182ff078c
Parents: 36effc5
Author: Matthias Boehm <mb...@gmail.com>
Authored: Fri Jul 7 11:49:51 2017 -0700
Committer: Matthias Boehm <mb...@gmail.com>
Committed: Fri Jul 7 11:49:51 2017 -0700

----------------------------------------------------------------------
 src/main/java/org/apache/sysml/api/jmlc/Connection.java           | 2 +-
 .../java/org/apache/sysml/runtime/matrix/data/LibMatrixCUDA.java  | 2 +-
 .../java/org/apache/sysml/runtime/matrix/data/LibMatrixMult.java  | 3 +--
 3 files changed, 3 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/systemml/blob/1db24076/src/main/java/org/apache/sysml/api/jmlc/Connection.java
----------------------------------------------------------------------
diff --git a/src/main/java/org/apache/sysml/api/jmlc/Connection.java b/src/main/java/org/apache/sysml/api/jmlc/Connection.java
index 43fb3e0..af50139 100644
--- a/src/main/java/org/apache/sysml/api/jmlc/Connection.java
+++ b/src/main/java/org/apache/sysml/api/jmlc/Connection.java
@@ -131,7 +131,7 @@ public class Connection implements Closeable
 	 * Connection constructor, the starting point for any other JMLC API calls.
 	 * This variant allows to enable a set of boolean compiler configurations.
 	 * 
-	 * @param config one or many boolean compiler configurations to enable.
+	 * @param configs one or many boolean compiler configurations to enable.
 	 */
 	public Connection(CompilerConfig.ConfigType... configs) {
 		//basic constructor, which also constructs the compiler config

http://git-wip-us.apache.org/repos/asf/systemml/blob/1db24076/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 6f28313..f47c15c 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
@@ -2751,7 +2751,7 @@ public class LibMatrixCUDA {
 		if (ec.getGPUContext(0) != gCtx)
 			throw new DMLRuntimeException("GPU : Invalid internal state, the GPUContext set with the ExecutionContext is not the same used to run this LibMatrixCUDA function");
 		if(constant == 0) {
-			MatrixObject out = getSparseMatrixOutputForGPUInstruction(ec, 0, instName, outputName);
+			getSparseMatrixOutputForGPUInstruction(ec, 0, instName, outputName);
 		} else {
 			//MatrixObject out = ec.getMatrixObject(outputName);
 			MatrixObject out = getDenseMatrixOutputForGPUInstruction(ec, instName, outputName);    // Allocated the dense output matrix

http://git-wip-us.apache.org/repos/asf/systemml/blob/1db24076/src/main/java/org/apache/sysml/runtime/matrix/data/LibMatrixMult.java
----------------------------------------------------------------------
diff --git a/src/main/java/org/apache/sysml/runtime/matrix/data/LibMatrixMult.java b/src/main/java/org/apache/sysml/runtime/matrix/data/LibMatrixMult.java
index 8159dc9..b5429c3 100644
--- a/src/main/java/org/apache/sysml/runtime/matrix/data/LibMatrixMult.java
+++ b/src/main/java/org/apache/sysml/runtime/matrix/data/LibMatrixMult.java
@@ -48,8 +48,7 @@ import org.apache.sysml.runtime.util.UtilFunctions;
  * <p>
  * In general all implementations use internally dense outputs
  * for direct access, but change the final result to sparse if necessary.
- * The only exceptions are ultra-sparse matrix mult, wsloss and wsigmoid.  
- * <p> 
+ * The only exceptions are ultra-sparse matrix mult, wsloss and wsigmoid.
  */
 public class LibMatrixMult 
 {