Repository: incubator-systemml Updated Branches: refs/heads/master da5879f53 -> 479819988
[MINOR] Javadoc error fixes Project: http://git-wip-us.apache.org/repos/asf/incubator-systemml/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-systemml/commit/47981998 Tree: http://git-wip-us.apache.org/repos/asf/incubator-systemml/tree/47981998 Diff: http://git-wip-us.apache.org/repos/asf/incubator-systemml/diff/47981998 Branch: refs/heads/master Commit: 479819988454f351885c9126e9d77436aef18da0 Parents: da5879f Author: Deron Eriksson <[email protected]> Authored: Mon Feb 20 13:40:19 2017 -0800 Committer: Deron Eriksson <[email protected]> Committed: Mon Feb 20 13:40:19 2017 -0800 ---------------------------------------------------------------------- .../org/apache/sysml/hops/ipa/FunctionCallGraph.java | 4 ++-- .../apache/sysml/hops/ipa/InterProceduralAnalysis.java | 1 + src/main/java/org/apache/sysml/lops/MultipleCP.java | 12 ++++++------ .../org/apache/sysml/runtime/io/IOUtilFunctions.java | 2 +- .../matrix/data/hadoopfix/DelegatingInputFormat.java | 2 +- 5 files changed, 11 insertions(+), 10 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-systemml/blob/47981998/src/main/java/org/apache/sysml/hops/ipa/FunctionCallGraph.java ---------------------------------------------------------------------- diff --git a/src/main/java/org/apache/sysml/hops/ipa/FunctionCallGraph.java b/src/main/java/org/apache/sysml/hops/ipa/FunctionCallGraph.java index eed6531..f872c97 100644 --- a/src/main/java/org/apache/sysml/hops/ipa/FunctionCallGraph.java +++ b/src/main/java/org/apache/sysml/hops/ipa/FunctionCallGraph.java @@ -91,7 +91,7 @@ public class FunctionCallGraph /** * Indicates if the given function is either directly or indirectly recursive. * An example of an indirect recursive function is foo2 in the following call - * chain: foo1 -> foo2 -> foo1. + * chain: foo1 -> foo2 -> foo1. * * @param fnamespace function namespace * @param fname function name @@ -105,7 +105,7 @@ public class FunctionCallGraph /** * Indicates if the given function is either directly or indirectly recursive. * An example of an indirect recursive function is foo2 in the following call - * chain: foo1 -> foo2 -> foo1. + * chain: foo1 -> foo2 -> foo1. * * @param fkey function key of calling function, null indicates the main program * @return true if the given function is recursive, false otherwise http://git-wip-us.apache.org/repos/asf/incubator-systemml/blob/47981998/src/main/java/org/apache/sysml/hops/ipa/InterProceduralAnalysis.java ---------------------------------------------------------------------- diff --git a/src/main/java/org/apache/sysml/hops/ipa/InterProceduralAnalysis.java b/src/main/java/org/apache/sysml/hops/ipa/InterProceduralAnalysis.java index caab391..acfd6d2 100644 --- a/src/main/java/org/apache/sysml/hops/ipa/InterProceduralAnalysis.java +++ b/src/main/java/org/apache/sysml/hops/ipa/InterProceduralAnalysis.java @@ -897,6 +897,7 @@ public class InterProceduralAnalysis * TODO call it after construct lops * * @param dmlp the DML program + * @param fgraph the function call graph * @throws LanguageException if LanguageException occurs */ public void flagFunctionsForRecompileOnce( DMLProgram dmlp, FunctionCallGraph fgraph ) http://git-wip-us.apache.org/repos/asf/incubator-systemml/blob/47981998/src/main/java/org/apache/sysml/lops/MultipleCP.java ---------------------------------------------------------------------- diff --git a/src/main/java/org/apache/sysml/lops/MultipleCP.java b/src/main/java/org/apache/sysml/lops/MultipleCP.java index 74a6070..4e2b5a8 100644 --- a/src/main/java/org/apache/sysml/lops/MultipleCP.java +++ b/src/main/java/org/apache/sysml/lops/MultipleCP.java @@ -69,17 +69,17 @@ public class MultipleCP extends Lop { * * <ul> * <li>Execution type (CP, SPARK, etc.) - * <li>Operand delimiter (°)</li> - * <li>Opcode (printf, etc.)</li> - * <li>Operand delimiter (°)</li> + * <li>Operand delimiter (°) + * <li>Opcode (printf, etc.) + * <li>Operand delimiter (°) * <li>Variable number of inputs, each followed by an operand delimiter - * (°)</li> + * (°) * <ul> * <li>Input consists of (label · data type · value type - * · is literal)</li> + * · is literal) * </ul> * <li>Output consisting of (label · data type · value - * type)</li> + * type) * </ul> * * Example: <br> http://git-wip-us.apache.org/repos/asf/incubator-systemml/blob/47981998/src/main/java/org/apache/sysml/runtime/io/IOUtilFunctions.java ---------------------------------------------------------------------- diff --git a/src/main/java/org/apache/sysml/runtime/io/IOUtilFunctions.java b/src/main/java/org/apache/sysml/runtime/io/IOUtilFunctions.java index 9d3b0ab..bc9f08f 100644 --- a/src/main/java/org/apache/sysml/runtime/io/IOUtilFunctions.java +++ b/src/main/java/org/apache/sysml/runtime/io/IOUtilFunctions.java @@ -175,7 +175,7 @@ public class IOUtilFunctions * * @param str string to split * @param delim delimiter - * @param string array for tokens, length needs to match the number of tokens + * @param tokens array for tokens, length needs to match the number of tokens * @return string array of tokens */ public static String[] splitCSV(String str, String delim, String[] tokens) http://git-wip-us.apache.org/repos/asf/incubator-systemml/blob/47981998/src/main/java/org/apache/sysml/runtime/matrix/data/hadoopfix/DelegatingInputFormat.java ---------------------------------------------------------------------- diff --git a/src/main/java/org/apache/sysml/runtime/matrix/data/hadoopfix/DelegatingInputFormat.java b/src/main/java/org/apache/sysml/runtime/matrix/data/hadoopfix/DelegatingInputFormat.java index 9268f44..7c38651 100644 --- a/src/main/java/org/apache/sysml/runtime/matrix/data/hadoopfix/DelegatingInputFormat.java +++ b/src/main/java/org/apache/sysml/runtime/matrix/data/hadoopfix/DelegatingInputFormat.java @@ -43,7 +43,7 @@ import org.apache.sysml.runtime.matrix.mapred.MRConfigurationNames; * An {@link InputFormat} that delegates behaviour of paths to multiple other * InputFormats. * - * @see MultipleInputs#addInputPath(JobConf, Path, Class, Class) + * @see MultipleInputs#addInputPath(JobConf, Path, Class) */ @SuppressWarnings("rawtypes") public class DelegatingInputFormat<K, V> implements InputFormat<K, V> {
