author
int64
658
755k
date
stringdate
2012-06-12 08:34:29
2024-07-22 14:51:21
timezone
int64
-46,800
43.2k
hash
stringlengths
40
40
message
stringlengths
5
490
mods
listlengths
1
16
language
stringclasses
20 values
license
stringclasses
3 values
repo
stringlengths
5
68
original_message
stringlengths
12
491
49,738
24.03.2017 19:32:08
25,200
0dd095ffb8a951ccdd52e889d3dcb4bfb2c95545
[MINOR] Fix code generator (templates, existing ops, input ordering)
[ { "change_type": "MODIFY", "old_path": "src/main/java/org/apache/sysml/hops/codegen/cplan/CNodeTernary.java", "new_path": "src/main/java/org/apache/sysml/hops/codegen/cplan/CNodeTernary.java", "diff": "@@ -43,7 +43,7 @@ public class CNodeTernary extends CNode\nreturn \" double %TMP% = %IN1% + %IN2% ...
Java
Apache License 2.0
apache/systemds
[MINOR] Fix code generator (templates, existing ops, input ordering)
49,738
25.03.2017 22:04:51
25,200
640df186afeaf3b52741cef670da7911b9d6d9a5
Additional codegen plan selector: fuse-no-redundancy This patch adds a second codegen plan selection heuristic: fuse_no-redundancy, which creates non-overlapping fused operators, i.e., without any redundant computation. Furthermore, we now also do proper memoization of processed hop nodes in both existing plan selectors to improved optimization time.
[ { "change_type": "MODIFY", "old_path": "src/main/java/org/apache/sysml/hops/codegen/SpoofCompiler.java", "new_path": "src/main/java/org/apache/sysml/hops/codegen/SpoofCompiler.java", "diff": "@@ -45,6 +45,9 @@ import org.apache.sysml.hops.codegen.template.TemplateBase;\nimport org.apache.sysml.hops....
Java
Apache License 2.0
apache/systemds
[SYSTEMML-1418] Additional codegen plan selector: fuse-no-redundancy This patch adds a second codegen plan selection heuristic: fuse_no-redundancy, which creates non-overlapping fused operators, i.e., without any redundant computation. Furthermore, we now also do proper memoization of processed hop nodes in both existing plan selectors to improved optimization time.
49,738
27.03.2017 00:07:47
25,200
d33537a9390a4d6e5b052786456aa82c0bb7a646
Extended code generator (celltmpl w/ sumsq aggregation) This patch extend the code generator w/ support for sum_squared aggregation in cell templates, which is important if ran in default optimization level w/ existing fused operators. Furthermore, this also includes new test cases and a cleanup of imports in generated classes.
[ { "change_type": "MODIFY", "old_path": "src/main/java/org/apache/sysml/hops/codegen/cplan/CNodeCell.java", "new_path": "src/main/java/org/apache/sysml/hops/codegen/cplan/CNodeCell.java", "diff": "@@ -22,6 +22,7 @@ package org.apache.sysml.hops.codegen.cplan;\nimport java.util.ArrayList;\nimport java...
Java
Apache License 2.0
apache/systemds
[SYSTEMML-1438] Extended code generator (celltmpl w/ sumsq aggregation) This patch extend the code generator w/ support for sum_squared aggregation in cell templates, which is important if ran in default optimization level w/ existing fused operators. Furthermore, this also includes new test cases and a cleanup of imports in generated classes.
49,717
27.03.2017 14:39:31
25,200
af93ca8a40befaaba79b0f96b4dbf8b8db85be13
[MINOR] Cleanup of some comments
[ { "change_type": "MODIFY", "old_path": "src/main/java/org/apache/sysml/runtime/matrix/data/LibMatrixCUDA.java", "new_path": "src/main/java/org/apache/sysml/runtime/matrix/data/LibMatrixCUDA.java", "diff": "@@ -26,15 +26,16 @@ import jcuda.jcublas.cublasFillMode;\nimport jcuda.jcublas.cublasHandle;\n...
Java
Apache License 2.0
apache/systemds
[MINOR] Cleanup of some comments
49,768
27.03.2017 22:27:44
25,200
22c5049f8828a5b0eb4a78c615c4dec9bd9a8150
Automate Release Artifact verification
[ { "change_type": "MODIFY", "old_path": "dev/release/artifact-verify.sh", "new_path": "dev/release/artifact-verify.sh", "diff": "@@ -95,10 +95,12 @@ done\nORIG_DIR=$(pwd)\nEXEC_DIR=\"`dirname \\\"$0\\\"`\"\n+if [[ ${EXEC_DIR:0:1} != \"/\" ]]; then\n+ EXEC_DIR=$ORIG_DIR/$EXEC_DIR\n+fi\ncd $EXEC_DIR/sr...
Java
Apache License 2.0
apache/systemds
[SYSTEMML-1440] Automate Release Artifact verification
49,736
29.03.2017 20:54:01
25,200
10f5dd920ee4d966c29ce601ce31465492e971f4
[MINOR] Disable Spark Convolution operation until rectangular blocks are handled
[ { "change_type": "MODIFY", "old_path": "src/main/java/org/apache/sysml/hops/ConvolutionOp.java", "new_path": "src/main/java/org/apache/sysml/hops/ConvolutionOp.java", "diff": "@@ -71,7 +71,8 @@ public class ConvolutionOp extends Hop implements MultiThreadedHop\n}\nprivate boolean isEligibleForSpark(...
Java
Apache License 2.0
apache/systemds
[MINOR] Disable Spark Convolution operation until rectangular blocks are handled
49,736
30.03.2017 17:18:34
25,200
c7931403526bda5dba6090f9b40394fbf76924e3
[MINOR] Disable Spark Convolution Operation and cleanup
[ { "change_type": "MODIFY", "old_path": "src/main/java/org/apache/sysml/hops/ConvolutionOp.java", "new_path": "src/main/java/org/apache/sysml/hops/ConvolutionOp.java", "diff": "@@ -96,7 +96,7 @@ public class ConvolutionOp extends Hop implements MultiThreadedHop\ncase BIAS_ADD:\ncase BIAS_MULTIPLY:\n{...
Java
Apache License 2.0
apache/systemds
[MINOR] Disable Spark Convolution Operation and cleanup
49,732
31.03.2017 18:17:47
25,200
8f7cf77bebc331e98a4020b805eff2da99519498
Fix a wrong comparison condition Closes
[ { "change_type": "MODIFY", "old_path": "src/main/java/org/apache/sysml/hops/QuaternaryOp.java", "new_path": "src/main/java/org/apache/sysml/hops/QuaternaryOp.java", "diff": "@@ -1566,7 +1566,7 @@ public class QuaternaryOp extends Hop implements MultiThreadedHop\n//compare basic inputs and weights (a...
Java
Apache License 2.0
apache/systemds
[SYSTEMML-1449] Fix a wrong comparison condition Closes #446.
49,738
31.03.2017 17:17:55
25,200
2e48d951b825fe4ef85dc13f6d69934b8cadfe46
Extended code generator (replace in rowagg/cell tmpls)
[ { "change_type": "MODIFY", "old_path": "src/main/java/org/apache/sysml/hops/ParameterizedBuiltinOp.java", "new_path": "src/main/java/org/apache/sysml/hops/ParameterizedBuiltinOp.java", "diff": "@@ -154,6 +154,11 @@ public class ParameterizedBuiltinOp extends Hop implements MultiThreadedHop\ngetInput...
Java
Apache License 2.0
apache/systemds
[SYSTEMML-1447] Extended code generator (replace in rowagg/cell tmpls)
49,772
31.03.2017 18:39:19
25,200
ac8ee2befb651ae89c481b63b4a8aa842585f7e4
[MINOR] Comments and whitespace fixes.
[ { "change_type": "MODIFY", "old_path": "scripts/staging/SystemML-NN/nn/layers/affine.dml", "new_path": "scripts/staging/SystemML-NN/nn/layers/affine.dml", "diff": "#-------------------------------------------------------------\n/*\n- * Fully-connected (affine) layer.\n+ * Affine (fully-connected) la...
Java
Apache License 2.0
apache/systemds
[MINOR] Comments and whitespace fixes.
49,772
31.03.2017 19:24:56
25,200
a6d7aa549738e075a8b1cae40f8020295d5e5867
[MINOR] Updating MNIST example docs.
[ { "change_type": "MODIFY", "old_path": "scripts/staging/SystemML-NN/examples/mnist_lenet-predict.dml", "new_path": "scripts/staging/SystemML-NN/examples/mnist_lenet-predict.dml", "diff": "# Sample Invocation:\n# Execute using Spark\n# ```\n-# $SPARK_HOME/bin/spark-submit --master local[*] --driver-m...
Java
Apache License 2.0
apache/systemds
[MINOR] Updating MNIST example docs.
49,772
31.03.2017 20:47:35
25,200
420dd17bee3adf5569cc848c7f0d62e3923bd769
Updating Preprocessing Notebook Updating the breast cancer preprocessing notebook with a new function for splitting the full DataFrame into train and validation DataFrames.
[ { "change_type": "MODIFY", "old_path": "projects/breast_cancer/Preprocessing.ipynb", "new_path": "projects/breast_cancer/Preprocessing.ipynb", "diff": "\"cell_type\": \"code\",\n\"execution_count\": null,\n\"metadata\": {\n- \"collapsed\": false,\n+ \"collapsed\": true,\n\"deletable\": true,\n\"edit...
Java
Apache License 2.0
apache/systemds
[SYSTEMML-1185] Updating Preprocessing Notebook Updating the breast cancer preprocessing notebook with a new function for splitting the full DataFrame into train and validation DataFrames.
49,768
03.04.2017 14:12:03
25,200
c8b71564edd99ef4dc8c4ff52ca75986ca617db4
[maven-release-plugin] prepare release v0.14.0-incubating-rc1
[ { "change_type": "MODIFY", "old_path": "pom.xml", "new_path": "pom.xml", "diff": "<version>18</version>\n</parent>\n<groupId>org.apache.systemml</groupId>\n- <version>0.14.0-incubating-SNAPSHOT</version>\n+ <version>0.14.0-incubating</version>\n<artifactId>systemml</artifactId>\n<packaging>jar</pack...
Java
Apache License 2.0
apache/systemds
[maven-release-plugin] prepare release v0.14.0-incubating-rc1
49,772
03.04.2017 14:14:07
25,200
b18908ad7d57199ddb78aef30eff932e16dec22e
Updating Preprocessing Notebook Updates to the Preprocessing notebook in prep for moving the preprocessing code to a library.
[ { "change_type": "MODIFY", "old_path": "projects/breast_cancer/Preprocessing.ipynb", "new_path": "projects/breast_cancer/Preprocessing.ipynb", "diff": "\" return samples\"\n]\n},\n- {\n- \"cell_type\": \"markdown\",\n- \"metadata\": {\n- \"deletable\": true,\n- \"editable\": true\n- },\n- \"source\"...
Java
Apache License 2.0
apache/systemds
[SYSTEMML-1185] Updating Preprocessing Notebook Updates to the Preprocessing notebook in prep for moving the preprocessing code to a library.
49,738
03.04.2017 14:28:25
25,200
933824ea9389193ab45851f2b5d1ae3e76f760b1
Fix inconsistencies generated code vs built-in functions This patch fixes various unary and binary codegen templates to use exactly the same as existing builtin functions. Note that this fixes result correctness issues of integer divide and modulus.
[ { "change_type": "MODIFY", "old_path": "src/main/java/org/apache/sysml/hops/codegen/cplan/CNodeBinary.java", "new_path": "src/main/java/org/apache/sysml/hops/codegen/cplan/CNodeBinary.java", "diff": "@@ -94,9 +94,9 @@ public class CNodeBinary extends CNode\ncase MINUS:\nreturn \" double %TMP% = %IN1...
Java
Apache License 2.0
apache/systemds
[SYSTEMML-1456] Fix inconsistencies generated code vs built-in functions This patch fixes various unary and binary codegen templates to use exactly the same as existing builtin functions. Note that this fixes result correctness issues of integer divide and modulus.
49,738
03.04.2017 15:51:43
25,200
35476195fb8caab5da1e63350b82df3e2b44cf8a
Fix memoization and cse on codegen cplan construction
[ { "change_type": "MODIFY", "old_path": "src/main/java/org/apache/sysml/hops/codegen/template/TemplateCell.java", "new_path": "src/main/java/org/apache/sysml/hops/codegen/template/TemplateCell.java", "diff": "@@ -136,6 +136,10 @@ public class TemplateCell extends TemplateBase\nprivate void rConstruct...
Java
Apache License 2.0
apache/systemds
[SYSTEMML-1458] Fix memoization and cse on codegen cplan construction
49,738
03.04.2017 18:25:44
25,200
69d8b7c4b53deb3a1d3e4eba99b8718366df1a86
Extended codegen operations and cost model
[ { "change_type": "MODIFY", "old_path": "src/main/java/org/apache/sysml/hops/codegen/cplan/CNodeBinary.java", "new_path": "src/main/java/org/apache/sysml/hops/codegen/cplan/CNodeBinary.java", "diff": "@@ -35,8 +35,8 @@ public class CNodeBinary extends CNode\nVECT_LESS_SCALAR, VECT_LESSEQUAL_SCALAR, V...
Java
Apache License 2.0
apache/systemds
[SYSTEMML-1424] Extended codegen operations and cost model
49,772
04.04.2017 14:34:46
25,200
abbce2bc7e2a281b27aff15e2cc523b41370ad00
Add `epochs` parameter to `mnist_lenet::train(...)` function. This commit extracts the `epochs` variable out as a parameter of the `mnist_lenet::train(...)` function. Closes
[ { "change_type": "MODIFY", "old_path": "scripts/staging/SystemML-NN/examples/mnist_lenet-train.dml", "new_path": "scripts/staging/SystemML-NN/examples/mnist_lenet-train.dml", "diff": "# - C: Number of color chanels in the images.\n# - Hin: Input image height.\n# - Win: Input image width.\n-# - out_d...
Java
Apache License 2.0
apache/systemds
[SYSTEMML-1460] Add `epochs` parameter to `mnist_lenet::train(...)` function. This commit extracts the `epochs` variable out as a parameter of the `mnist_lenet::train(...)` function. Closes #450.
49,738
04.04.2017 18:33:05
25,200
1d1a9fa403a9227d1ef56b959132177b532884f6
[HOTFIX][SYSTEMML-1459] Fix rewrite 'fuse binary subdag' (multi-matches)
[ { "change_type": "MODIFY", "old_path": "src/main/java/org/apache/sysml/hops/rewrite/RewriteAlgebraicSimplificationStatic.java", "new_path": "src/main/java/org/apache/sysml/hops/rewrite/RewriteAlgebraicSimplificationStatic.java", "diff": "@@ -1028,6 +1028,7 @@ public class RewriteAlgebraicSimplificat...
Java
Apache License 2.0
apache/systemds
[HOTFIX][SYSTEMML-1459] Fix rewrite 'fuse binary subdag' (multi-matches)
49,768
05.04.2017 15:56:10
25,200
16245f3b2001695fd596a20ddab5f4fb6c43dae3
[maven-release-plugin] prepare release v0.14.0-incubating-rc2
[ { "change_type": "MODIFY", "old_path": "pom.xml", "new_path": "pom.xml", "diff": "<version>18</version>\n</parent>\n<groupId>org.apache.systemml</groupId>\n- <version>0.14.0-incubating-SNAPSHOT</version>\n+ <version>0.14.0-incubating</version>\n<artifactId>systemml</artifactId>\n<packaging>jar</pack...
Java
Apache License 2.0
apache/systemds
[maven-release-plugin] prepare release v0.14.0-incubating-rc2
49,772
05.04.2017 18:12:57
25,200
bbca632a8617f5d76ed62778616e0ebcd3ccdcab
Updating breast cancer ML notebook & script Updates to the machine learning notebook and convnet.dml model based on recent changes.
[ { "change_type": "MODIFY", "old_path": "projects/breast_cancer/MachineLearning.ipynb", "new_path": "projects/breast_cancer/MachineLearning.ipynb", "diff": "\"size=256\\n\",\n\"grayscale = False\\n\",\n\"c = 1 if grayscale else 3\\n\",\n- \"p = 0.01\"\n+ \"p = 0.01\\n\",\n+ \"folder = \\\"data\\\"\"\...
Java
Apache License 2.0
apache/systemds
[SYSTEMML-1185] Updating breast cancer ML notebook & script Updates to the machine learning notebook and convnet.dml model based on recent changes.
49,772
05.04.2017 18:14:40
25,200
5412e2d7507c554a47f0112c4cc61570ae1b77d5
Enable generation of sampled data in preprocessing This enables the generation of a 1% sampled DataFrame during the preprocessing phase of the breast cancer project.
[ { "change_type": "MODIFY", "old_path": "projects/breast_cancer/preprocess.py", "new_path": "projects/breast_cancer/preprocess.py", "diff": "@@ -100,49 +100,49 @@ save(val, val_df_path, sample_size, grayscale)\n# ---\n#\n-## Sample Data\n-### TODO: Wrap this in a function with appropriate default arg...
Java
Apache License 2.0
apache/systemds
[SYSTEMML-1185] Enable generation of sampled data in preprocessing This enables the generation of a 1% sampled DataFrame during the preprocessing phase of the breast cancer project.
49,738
06.04.2017 17:14:45
25,200
f2ea6336fea757ba0fb81f315af9bb97df6615d3
Improved codegen handling of empty inputs w/o alloc
[ { "change_type": "MODIFY", "old_path": "src/main/java/org/apache/sysml/hops/codegen/cplan/CNodeTernary.java", "new_path": "src/main/java/org/apache/sysml/hops/codegen/cplan/CNodeTernary.java", "diff": "@@ -54,7 +54,7 @@ public class CNodeTernary extends CNode\nreturn \" double %TMP% = Double.isNaN(%...
Java
Apache License 2.0
apache/systemds
[SYSTEMML-1472] Improved codegen handling of empty inputs w/o alloc
49,738
06.04.2017 18:51:45
25,200
7c15339019360f3add4aac23b06cde45a4b758f8
Fix correctness codegen cellwise min/max aggregation The cellwise codegen template allows for sum, sum_sq, min and max as aggregation functions. In case of multi-threaded execution there is a need for a final aggregation of partial results. This patch fixes resulting correctness issues for min and max in such scenarios.
[ { "change_type": "MODIFY", "old_path": "src/main/java/org/apache/sysml/runtime/codegen/SpoofCellwise.java", "new_path": "src/main/java/org/apache/sysml/runtime/codegen/SpoofCellwise.java", "diff": "@@ -122,10 +122,10 @@ public abstract class SpoofCellwise extends SpoofOperator implements Serializabl...
Java
Apache License 2.0
apache/systemds
[SYSTEMML-1473] Fix correctness codegen cellwise min/max aggregation The cellwise codegen template allows for sum, sum_sq, min and max as aggregation functions. In case of multi-threaded execution there is a need for a final aggregation of partial results. This patch fixes resulting correctness issues for min and max in such scenarios.
49,738
06.04.2017 20:57:07
25,200
9820f4c5293c69873f68544748507b6473948f12
Extended code generator (multi-agg across partitions)
[ { "change_type": "MODIFY", "old_path": "src/main/java/org/apache/sysml/hops/codegen/cplan/CNodeMultiAgg.java", "new_path": "src/main/java/org/apache/sysml/hops/codegen/cplan/CNodeMultiAgg.java", "diff": "@@ -106,7 +106,10 @@ public class CNodeMultiAgg extends CNodeTpl\nfor( int i=0; i<_outputs.size(...
Java
Apache License 2.0
apache/systemds
[SYSTEMML-1288] Extended code generator (multi-agg across partitions)
49,738
07.04.2017 13:40:40
25,200
de270219f7cf462c0d7c3471bcae1b17b81962b6
Fix codegen cost model (number and size of inputs) This patch fixes the cost-based codegen plan selection to account for correct input sizes and disregard scalar inputs. Furthermore, this also adds more trace logging information and fixes remaining correctness issues of multi aggregates.
[ { "change_type": "MODIFY", "old_path": "src/main/java/org/apache/sysml/hops/codegen/template/PlanSelectionFuseCostBased.java", "new_path": "src/main/java/org/apache/sysml/hops/codegen/template/PlanSelectionFuseCostBased.java", "diff": "@@ -244,7 +244,7 @@ public class PlanSelectionFuseCostBased exte...
Java
Apache License 2.0
apache/systemds
[SYSTEMML-1475] Fix codegen cost model (number and size of inputs) This patch fixes the cost-based codegen plan selection to account for correct input sizes and disregard scalar inputs. Furthermore, this also adds more trace logging information and fixes remaining correctness issues of multi aggregates.
49,738
07.04.2017 19:45:41
25,200
18ab98a6e2083551618f4bf62dba3a19574b115b
Support rowMins/rowMaxs in codegen row aggregates This patch extends the codegen compiler by rowmins and rowmax for row aggregate templates and introduces the related runtime primitives. Furthermore, this patch also fixes various existing primitives such as sparse rowSums, and dense vector comparisons.
[ { "change_type": "MODIFY", "old_path": "src/main/java/org/apache/sysml/hops/codegen/cplan/CNodeUnary.java", "new_path": "src/main/java/org/apache/sysml/hops/codegen/cplan/CNodeUnary.java", "diff": "@@ -21,13 +21,15 @@ package org.apache.sysml.hops.codegen.cplan;\nimport java.util.Arrays;\n+import or...
Java
Apache License 2.0
apache/systemds
[SYSTEMML-1448] Support rowMins/rowMaxs in codegen row aggregates This patch extends the codegen compiler by rowmins and rowmax for row aggregate templates and introduces the related runtime primitives. Furthermore, this patch also fixes various existing primitives such as sparse rowSums, and dense vector comparisons.
49,736
08.04.2017 19:28:28
28,800
8a5450dde5b55c6fb67d9fb034b69e5eafa15bf7
Bugfix for scipy csr and numpy to matrixblock conversion Closes
[ { "change_type": "MODIFY", "old_path": "src/main/python/systemml/converters.py", "new_path": "src/main/python/systemml/converters.py", "diff": "@@ -80,7 +80,8 @@ def _convertDenseMatrixToMB(sc, src):\ndef _copyRowBlock(i, sc, ret, src, numRowsPerBlock, rlen, clen):\nrowIndex = int(i / numRowsPerBloc...
Java
Apache License 2.0
apache/systemds
[SYSTEMML-1474] Bugfix for scipy csr and numpy to matrixblock conversion Closes #455.
49,768
10.04.2017 16:05:23
25,200
fb55a74d1441a1186df577f9a8674de34c6c64a2
Add Pygments license in source distribution Closes
[ { "change_type": "MODIFY", "old_path": "src/assembly/source/LICENSE", "new_path": "src/assembly/source/LICENSE", "diff": "@@ -322,6 +322,36 @@ available at https://github.com/jquery/sizzle\nThe following license applies to all parts of this software except as\ndocumented below:\n+===================...
Java
Apache License 2.0
apache/systemds
[SYSTEMML-1510] Add Pygments license in source distribution Closes #456.
49,772
10.04.2017 17:20:13
25,200
f5ef628c0dbe4e5ce8dec61f5e05c5597e341c95
Rename `batch_norm.dml` and `spatial_batch_norm.dml` Rename `batch_norm.dml` and `spatial_batch_norm.dml` to `batch_norm1d.dml` and `batch_norm2d.dml`. Closes
[ { "change_type": "RENAME", "old_path": "scripts/staging/SystemML-NN/nn/layers/batch_norm.dml", "new_path": "scripts/staging/SystemML-NN/nn/layers/batch_norm1d.dml", "diff": "#-------------------------------------------------------------\n/*\n- * Batch Normalization layer.\n+ * 1D Batch Normalization...
Java
Apache License 2.0
apache/systemds
[SYSTEMML-1463] Rename `batch_norm.dml` and `spatial_batch_norm.dml` Rename `batch_norm.dml` and `spatial_batch_norm.dml` to `batch_norm1d.dml` and `batch_norm2d.dml`. Closes #453.
49,772
10.04.2017 17:20:55
25,200
6517256511b5953b4efea97600164261243a8402
Add new 1D/2D "Scale & Shift" layers A "Scale & Shift" layer introduces learnable parameters (`gamma`, `beta`) to scale and shift the input on either a per-feature basis (1D) or a per-channel basis (2D). `y = x*gamma + beta` Closes
[ { "change_type": "ADD", "old_path": null, "new_path": "scripts/staging/SystemML-NN/nn/layers/scale_shift1d.dml", "diff": "+#-------------------------------------------------------------\n+#\n+# Licensed to the Apache Software Foundation (ASF) under one\n+# or more contributor license agreements. See...
Java
Apache License 2.0
apache/systemds
[SYSTEMML-1468] Add new 1D/2D "Scale & Shift" layers A "Scale & Shift" layer introduces learnable parameters (`gamma`, `beta`) to scale and shift the input on either a per-feature basis (1D) or a per-channel basis (2D). `y = x*gamma + beta` Closes #453.
49,738
11.04.2017 20:40:07
25,200
f9f70b3a216a77414d81fe44dcb3a25cbc8a902d
Additional unary/binary codegen row vector primitives This patch adds compiler and runtime support for the following commonly used row vector primitives: abs, round, ceil, floor, sign, pow2, mult2, sqrt, min, max, plus, pow. Furthermore, this also includes additional tests for complex rowwise fusion patterns.
[ { "change_type": "MODIFY", "old_path": "src/main/java/org/apache/sysml/hops/codegen/cplan/CNodeBinary.java", "new_path": "src/main/java/org/apache/sysml/hops/codegen/cplan/CNodeBinary.java", "diff": "@@ -29,10 +29,12 @@ public class CNodeBinary extends CNode\n{\npublic enum BinType {\nDOT_PRODUCT,\n...
Java
Apache License 2.0
apache/systemds
[SYSTEMML-1513] Additional unary/binary codegen row vector primitives This patch adds compiler and runtime support for the following commonly used row vector primitives: abs, round, ceil, floor, sign, pow2, mult2, sqrt, min, max, plus, pow. Furthermore, this also includes additional tests for complex rowwise fusion patterns.
49,738
12.04.2017 22:29:47
25,200
a2c1e75975674f7f2093f6465b8c913565addca8
[MINOR] Fix codegen multi-aggregate min/max result initialization This patch fixes an issue of proper min/max result initialization for the case of multi-threaded execution, which was not caught by the testsuite before because multi-threading is only applied for inputs w/ >1M cells.
[ { "change_type": "MODIFY", "old_path": "src/main/java/org/apache/sysml/runtime/codegen/SpoofMultiAggregate.java", "new_path": "src/main/java/org/apache/sysml/runtime/codegen/SpoofMultiAggregate.java", "diff": "@@ -85,6 +85,7 @@ public abstract class SpoofMultiAggregate extends SpoofOperator implemen...
Java
Apache License 2.0
apache/systemds
[MINOR] Fix codegen multi-aggregate min/max result initialization This patch fixes an issue of proper min/max result initialization for the case of multi-threaded execution, which was not caught by the testsuite before because multi-threading is only applied for inputs w/ >1M cells.
49,768
13.04.2017 15:15:38
25,200
fe6d887420143277aa8930cbea6d43a460ae7789
[maven-release-plugin] prepare release v0.14.0-incubating-rc3
[ { "change_type": "MODIFY", "old_path": "pom.xml", "new_path": "pom.xml", "diff": "<version>18</version>\n</parent>\n<groupId>org.apache.systemml</groupId>\n- <version>0.14.0-incubating-SNAPSHOT</version>\n+ <version>0.14.0-incubating</version>\n<artifactId>systemml</artifactId>\n<packaging>jar</pack...
Java
Apache License 2.0
apache/systemds
[maven-release-plugin] prepare release v0.14.0-incubating-rc3
49,738
13.04.2017 14:18:47
25,200
b70ee45330a457e3f0ee61c499306fb2518997c7
Generalized codegen cell template (sideways row vectors) This patch generalizes the existing codegen cell template by allowing sideways row vectors, i.e., matrix-row vector binary operations, in addition to sideways column vectors and matrices.
[ { "change_type": "MODIFY", "old_path": "src/main/java/org/apache/sysml/hops/codegen/SpoofCompiler.java", "new_path": "src/main/java/org/apache/sysml/hops/codegen/SpoofCompiler.java", "diff": "@@ -41,8 +41,6 @@ import org.apache.sysml.hops.codegen.cplan.CNodeOuterProduct;\nimport org.apache.sysml.hop...
Java
Apache License 2.0
apache/systemds
[SYSTEMML-1515] Generalized codegen cell template (sideways row vectors) This patch generalizes the existing codegen cell template by allowing sideways row vectors, i.e., matrix-row vector binary operations, in addition to sideways column vectors and matrices.
49,738
14.04.2017 01:04:22
25,200
55e46e7cbeb46073d5d2f19fc4c3b59bdc01c7cb
Fix corrupted input file names in old/new mlcontext
[ { "change_type": "MODIFY", "old_path": "src/main/java/org/apache/sysml/api/MLContext.java", "new_path": "src/main/java/org/apache/sysml/api/MLContext.java", "diff": "@@ -518,7 +518,7 @@ public class MLContext {\nif( format.equals(\"csv\") ) {\nint blksz = ConfigurationManager.getBlocksize();\nMatrix...
Java
Apache License 2.0
apache/systemds
[SYSTEMML-1518] Fix corrupted input file names in old/new mlcontext
49,738
14.04.2017 02:24:13
25,200
149562eca0bb1a438e34dc6e2d7993b44e2e612e
Fix sparse output corruption of row-wise rexpand
[ { "change_type": "MODIFY", "old_path": "src/main/java/org/apache/sysml/runtime/matrix/data/LibMatrixReorg.java", "new_path": "src/main/java/org/apache/sysml/runtime/matrix/data/LibMatrixReorg.java", "diff": "@@ -1899,9 +1899,13 @@ public class LibMatrixReorg\nif( val == Math.floor(val) && val >= 1 &...
Java
Apache License 2.0
apache/systemds
[SYSTEMML-1520] Fix sparse output corruption of row-wise rexpand
49,738
14.04.2017 20:57:51
25,200
1cd62866b7848bdb5eeded39259cd23b0ff172c8
[SYSTEMML-1525,1526] Fix codegen size propagation and cplan cleanup This patch fixes the output size propagation of row and multi-aggregate templates as well as plan cleanups of multi-aggregate templates where the output nodes themselves can be indexing operations.
[ { "change_type": "MODIFY", "old_path": "src/main/java/org/apache/sysml/hops/codegen/SpoofCompiler.java", "new_path": "src/main/java/org/apache/sysml/hops/codegen/SpoofCompiler.java", "diff": "@@ -583,21 +583,10 @@ public class SpoofCompiler\ntmp.toArray(new Hop[0]),tpl));\n}\n- //remove spurious loo...
Java
Apache License 2.0
apache/systemds
[SYSTEMML-1525,1526] Fix codegen size propagation and cplan cleanup This patch fixes the output size propagation of row and multi-aggregate templates as well as plan cleanups of multi-aggregate templates where the output nodes themselves can be indexing operations.
49,738
16.04.2017 15:54:36
25,200
e1ae4a9f93cad3f513ce3de8597cec29b7263205
Performance compressed tsmm (ddc decomp, alloc, result)
[ { "change_type": "MODIFY", "old_path": "src/main/java/org/apache/sysml/runtime/compress/ColGroupDDC1.java", "new_path": "src/main/java/org/apache/sysml/runtime/compress/ColGroupDDC1.java", "diff": "@@ -168,6 +168,16 @@ public class ColGroupDDC1 extends ColGroupDDC\n//note: append ok because final so...
Java
Apache License 2.0
apache/systemds
[SYSTEMML-1530] Performance compressed tsmm (ddc decomp, alloc, result)
49,738
16.04.2017 22:15:56
25,200
cd49f224a02f4d0f03c3b03e36bb8c5cba7edc27
Performance compressed rowsums (ddc1 groups, alloc)
[ { "change_type": "MODIFY", "old_path": "src/main/java/org/apache/sysml/runtime/compress/ColGroupDDC1.java", "new_path": "src/main/java/org/apache/sysml/runtime/compress/ColGroupDDC1.java", "diff": "@@ -302,7 +302,7 @@ public class ColGroupDDC1 extends ColGroupDDC\ndouble[] c = result.getDenseBlock()...
Java
Apache License 2.0
apache/systemds
[SYSTEMML-1531] Performance compressed rowsums (ddc1 groups, alloc)
49,738
19.04.2017 00:12:03
25,200
4c74a34349bd4eeb0f4e102db7bca1f09b2ced97
Fix parfor optimizer (result/task partitioning on spark)
[ { "change_type": "MODIFY", "old_path": "src/main/java/org/apache/sysml/runtime/controlprogram/parfor/opt/OptimizerConstrained.java", "new_path": "src/main/java/org/apache/sysml/runtime/controlprogram/parfor/opt/OptimizerConstrained.java", "diff": "@@ -131,7 +131,7 @@ public class OptimizerConstraine...
Java
Apache License 2.0
apache/systemds
[SYSTEMML-1546] Fix parfor optimizer (result/task partitioning on spark)
49,768
19.04.2017 14:22:41
25,200
8bdcf106ca9bd04c0f68924ad5827eb7d7d54952
[maven-release-plugin] prepare release v0.14.0-incubating-rc4
[ { "change_type": "MODIFY", "old_path": "pom.xml", "new_path": "pom.xml", "diff": "<version>18</version>\n</parent>\n<groupId>org.apache.systemml</groupId>\n- <version>0.14.0-incubating-SNAPSHOT</version>\n+ <version>0.14.0-incubating</version>\n<artifactId>systemml</artifactId>\n<packaging>jar</pack...
Java
Apache License 2.0
apache/systemds
[maven-release-plugin] prepare release v0.14.0-incubating-rc4
49,736
19.04.2017 14:20:00
28,800
d69fdfe45cbd20efc618927a07b457bbb5f43023
[MINOR] Updated the algorithm documentation to clearly mark the "Argument" section.
[ { "change_type": "MODIFY", "old_path": "docs/algorithms-classification.md", "new_path": "docs/algorithms-classification.md", "diff": "@@ -180,7 +180,7 @@ val prediction = model.transform(X_test_df)\n</div>\n</div>\n-### Arguments\n+### Arguments for Spark and Hadoop invocation\n**X**: Location (on H...
Java
Apache License 2.0
apache/systemds
[MINOR] Updated the algorithm documentation to clearly mark the "Argument" section.
49,738
18.04.2017 01:37:55
25,200
53fe1ae68ab3b5024ead0d258a213f3e4f392616
[MINOR] Graceful value type casting of scalar function args, cleanup
[ { "change_type": "MODIFY", "old_path": "src/main/java/org/apache/sysml/debug/DMLDebuggerFunctions.java", "new_path": "src/main/java/org/apache/sysml/debug/DMLDebuggerFunctions.java", "diff": "@@ -34,14 +34,9 @@ import org.apache.sysml.runtime.controlprogram.LocalVariableMap;\nimport org.apache.sysml...
Java
Apache License 2.0
apache/systemds
[MINOR] Graceful value type casting of scalar function args, cleanup
49,738
18.04.2017 14:23:50
25,200
7b7b9ba9ba48faab05f396ddbac0c81eb2cc50f3
Fix codegen cost model (missing common operations) This patch includes ctable, centralmoment, and covariance in both binary and ternary forms into the codegen cost model, which is used in the cost-based plan selector.
[ { "change_type": "MODIFY", "old_path": "src/main/java/org/apache/sysml/hops/codegen/template/PlanSelectionFuseCostBased.java", "new_path": "src/main/java/org/apache/sysml/hops/codegen/template/PlanSelectionFuseCostBased.java", "diff": "@@ -41,6 +41,7 @@ import org.apache.sysml.hops.Hop;\nimport org....
Java
Apache License 2.0
apache/systemds
[SYSTEMML-1537] Fix codegen cost model (missing common operations) This patch includes ctable, centralmoment, and covariance in both binary and ternary forms into the codegen cost model, which is used in the cost-based plan selector.
49,738
18.04.2017 14:27:39
25,200
b641edc165aab129559a5db1bf5e9d050cd30b37
Improved dynamic recompilation (stats update p rewrites)
[ { "change_type": "MODIFY", "old_path": "src/main/java/org/apache/sysml/hops/recompile/Recompiler.java", "new_path": "src/main/java/org/apache/sysml/hops/recompile/Recompiler.java", "diff": "@@ -198,9 +198,15 @@ public class Recompiler\nrUpdateStatistics( hopRoot, vars );\n// dynamic hop rewrites\n- ...
Java
Apache License 2.0
apache/systemds
[SYSTEMML-1321] Improved dynamic recompilation (stats update p rewrites)
49,736
20.04.2017 16:13:55
25,200
39bf1e6d5b08fa5eadab17a17867ca407c84d0a5
[MINOR] Supported Caffe2DML via pip Enables using Caffe2DML directly via pip without requiring driver-class-path SystemML.jar
[ { "change_type": "MODIFY", "old_path": "src/main/python/systemml/mllearn/estimators.py", "new_path": "src/main/python/systemml/mllearn/estimators.py", "diff": "@@ -570,6 +570,7 @@ class Caffe2DML(BaseSystemMLClassifier):\n\"\"\"\nself.sqlCtx = sqlCtx\nself.sc = sqlCtx._sc\n+ createJavaObject(self.sc...
Java
Apache License 2.0
apache/systemds
[SYSTEMML-692] [MINOR] Supported Caffe2DML via pip - Enables using Caffe2DML directly via pip without requiring --driver-class-path SystemML.jar
49,738
21.04.2017 00:08:09
25,200
bda96a8e8690f8821c476d5370c0d39e41da19a2
New multi-threaded colum-wise rexpand operations This patch introduces a multi-threaded runtime for the internal parameterized built-in function rexpand, specifically column expansion, along with necessary compiler modifications. The runtime improvements are moderate for both dense and sparse, ranging from 1.6x to 2x due to better write bandwidth exploitation (dense) and latency hiding (sparse).
[ { "change_type": "MODIFY", "old_path": "src/main/java/org/apache/sysml/hops/ParameterizedBuiltinOp.java", "new_path": "src/main/java/org/apache/sysml/hops/ParameterizedBuiltinOp.java", "diff": "@@ -784,8 +784,9 @@ public class ParameterizedBuiltinOp extends Hop implements MultiThreadedHop\n{\nif( et...
Java
Apache License 2.0
apache/systemds
[SYSTEMML-1551] New multi-threaded colum-wise rexpand operations This patch introduces a multi-threaded runtime for the internal parameterized built-in function rexpand, specifically column expansion, along with necessary compiler modifications. The runtime improvements are moderate for both dense and sparse, ranging from 1.6x to 2x due to better write bandwidth exploitation (dense) and latency hiding (sparse).
49,738
21.04.2017 03:21:19
25,200
ea6e2fe39077d6d914bd8024b5950096602ade8e
[HOTFIX] Fix recompute nonzeros for row range of csr sparse block
[ { "change_type": "MODIFY", "old_path": "src/main/java/org/apache/sysml/runtime/matrix/data/MatrixBlock.java", "new_path": "src/main/java/org/apache/sysml/runtime/matrix/data/MatrixBlock.java", "diff": "@@ -1144,7 +1144,7 @@ public class MatrixBlock extends MatrixValue implements CacheBlock, External...
Java
Apache License 2.0
apache/systemds
[HOTFIX] Fix recompute nonzeros for row range of csr sparse block
49,717
21.04.2017 14:25:50
25,200
f73673d59383ac947111cb84787cfa4df3ca7344
Added python script to launch systemml in standalone mode Closes
[ { "change_type": "ADD", "old_path": null, "new_path": "bin/systemml-standalone.py", "diff": "+#!/usr/bin/env python\n+#-------------------------------------------------------------\n+#\n+# Licensed to the Apache Software Foundation (ASF) under one\n+# or more contributor license agreements. See the ...
Java
Apache License 2.0
apache/systemds
Added python script to launch systemml in standalone mode Closes #461
49,736
21.04.2017 13:58:22
28,800
9ed27ad6066a143a0e5ac5ccb800c7ca20e81ceb
Support GPU via Python MLContext API
[ { "change_type": "MODIFY", "old_path": "src/main/python/systemml/mlcontext.py", "new_path": "src/main/python/systemml/mlcontext.py", "diff": "@@ -351,6 +351,17 @@ class MLContext(object):\nself._ml.setStatistics(bool(statistics))\nreturn self\n+ def setGPU(self, enable):\n+ \"\"\"\n+ Whether or not ...
Java
Apache License 2.0
apache/systemds
[SYSTEMML-1552] Support GPU via Python MLContext API
49,772
21.04.2017 18:17:41
25,200
63e28a37bde5399ed27c58cf09b990290e74e8e4
[MINOR] Code style updates for `nn` This commit simply updates the `nn` test suite to make use of the fact that DML no longer requires dummy variable assignment for functions that do not return values.
[ { "change_type": "MODIFY", "old_path": "scripts/staging/SystemML-NN/nn/test/run_tests.dml", "new_path": "scripts/staging/SystemML-NN/nn/test/run_tests.dml", "diff": "@@ -30,37 +30,37 @@ print(\"Starting grad checks.\")\nprint(\"---\")\n# Loss & loss-related functions\n-tmp = grad_check::cross_entrop...
Java
Apache License 2.0
apache/systemds
[MINOR] Code style updates for `nn` This commit simply updates the `nn` test suite to make use of the fact that DML no longer requires dummy variable assignment for functions that do not return values.
49,717
22.04.2017 00:55:50
25,200
b481324d06429d3435fcd25a78aef971e5498b6c
[HOTFIX] for missing apache license in CSRPointer
[ { "change_type": "MODIFY", "old_path": "src/main/java/org/apache/sysml/runtime/instructions/gpu/context/CSRPointer.java", "new_path": "src/main/java/org/apache/sysml/runtime/instructions/gpu/context/CSRPointer.java", "diff": "+/*\n+ * Licensed to the Apache Software Foundation (ASF) under one\n+ * o...
Java
Apache License 2.0
apache/systemds
[HOTFIX] for missing apache license in CSRPointer
49,738
22.04.2017 22:29:40
25,200
edd3491fa07e8897b2f119f438b88e8bf769f100
[MINOR] Remove unused tests and test utility functions
[ { "change_type": "DELETE", "old_path": "src/test/java/org/apache/sysml/test/integration/AutomatedScalabilityTestBase.java", "new_path": null, "diff": "-/*\n- * Licensed to the Apache Software Foundation (ASF) under one\n- * or more contributor license agreements. See the NOTICE file\n- * distributed...
Java
Apache License 2.0
apache/systemds
[MINOR] Remove unused tests and test utility functions
49,738
25.04.2017 15:03:49
25,200
eb35b2c90cbacc674793ca4aed4583273d00fa87
Fix rdd status handling for exports and writes, tests
[ { "change_type": "MODIFY", "old_path": "src/main/java/org/apache/sysml/runtime/controlprogram/caching/CacheableData.java", "new_path": "src/main/java/org/apache/sysml/runtime/controlprogram/caching/CacheableData.java", "diff": "@@ -204,7 +204,7 @@ public abstract class CacheableData<T extends CacheB...
Java
Apache License 2.0
apache/systemds
[SYSTEMML-1466] Fix rdd status handling for exports and writes, tests
49,772
26.04.2017 14:40:40
25,200
1f5cf697c49313861a3bdbcc634f7a56daabdc16
Move `examples` into `nn`
[ { "change_type": "MODIFY", "old_path": "scripts/staging/SystemML-NN/README.md", "new_path": "scripts/staging/SystemML-NN/README.md", "diff": "@@ -22,7 +22,7 @@ limitations under the License.\n### A deep learning library for [Apache SystemML](https://github.com/apache/incubator-systemml).\n## Example...
Java
Apache License 2.0
apache/systemds
[SYSTEMML-1524] Move `examples` into `nn`
49,772
26.04.2017 15:32:25
25,200
2a4e4f8b30fce0ea8a4a6cfec9c0cced377534ad
[MINOR] Naming updates in the MNIST LeNet & softmax examples, and README fix.
[ { "change_type": "MODIFY", "old_path": "scripts/nn/README.md", "new_path": "scripts/nn/README.md", "diff": "@@ -22,7 +22,7 @@ limitations under the License.\n### A deep learning library for [Apache SystemML](https://github.com/apache/incubator-systemml).\n## Examples:\n-#### Please see the [`example...
Java
Apache License 2.0
apache/systemds
[MINOR] Naming updates in the MNIST LeNet & softmax examples, and README fix.
49,736
26.04.2017 19:24:09
28,800
39351749f76e2703b9be43d3b08b348a7e115384
[HOTFIX] Bugfix for bias_add and bias_multiply operations
[ { "change_type": "MODIFY", "old_path": "src/main/java/org/apache/sysml/runtime/matrix/data/LibMatrixDNN.java", "new_path": "src/main/java/org/apache/sysml/runtime/matrix/data/LibMatrixDNN.java", "diff": "@@ -709,26 +709,33 @@ public class LibMatrixDNN {\nint K = bias.getNumRows();\nint PQ = input.ge...
Java
Apache License 2.0
apache/systemds
[HOTFIX] Bugfix for bias_add and bias_multiply operations
49,736
30.04.2017 12:39:12
25,200
b50fe1078a3ad2e4f3ae50560ba5dfd269059b5f
Added the documentation for convolution Closes
[ { "change_type": "MODIFY", "old_path": "docs/dml-language-reference.md", "new_path": "docs/dml-language-reference.md", "diff": "@@ -1494,6 +1494,38 @@ The following code snippet shows an example scenario of transforming a training\nNote that the metadata generated during the training phase (located ...
Java
Apache License 2.0
apache/systemds
[SYSTEMML-540] Added the documentation for convolution Closes #464.
49,736
30.04.2017 12:15:48
28,800
7a3e95716e81c1fc3415c36c357c9d24b710e739
Initial attempt to consolidate replicated compilation chain This only consolidates MLContext and DMLScript, but not JMLC and old MLContext (as it is going to be removed soon). Closes
[ { "change_type": "MODIFY", "old_path": "src/main/java/org/apache/sysml/api/DMLScript.java", "new_path": "src/main/java/org/apache/sysml/api/DMLScript.java", "diff": "@@ -88,11 +88,8 @@ import org.apache.sysml.runtime.controlprogram.context.SparkExecutionContext;\nimport org.apache.sysml.runtime.cont...
Java
Apache License 2.0
apache/systemds
[SYSTEMML-591] Initial attempt to consolidate replicated compilation chain This only consolidates MLContext and DMLScript, but not JMLC and old MLContext (as it is going to be removed soon). Closes #471.
49,738
30.04.2017 16:47:15
25,200
f2a927f87d8d9f82bcd64e42d2eb5abb838d6085
[MINOR] Fix robustness codegen cost-based plan selection (cost model)
[ { "change_type": "MODIFY", "old_path": "src/main/java/org/apache/sysml/hops/codegen/template/PlanSelectionFuseCostBased.java", "new_path": "src/main/java/org/apache/sysml/hops/codegen/template/PlanSelectionFuseCostBased.java", "diff": "@@ -725,7 +725,7 @@ public class PlanSelectionFuseCostBased exte...
Java
Apache License 2.0
apache/systemds
[MINOR] Fix robustness codegen cost-based plan selection (cost model)
49,717
30.04.2017 21:45:21
25,200
e8fbc753988dc94e97a8e8b723e22e89483a1fc6
Initial implementation of "solve" for GPU Closes
[ { "change_type": "MODIFY", "old_path": "src/main/java/org/apache/sysml/hops/BinaryOp.java", "new_path": "src/main/java/org/apache/sysml/hops/BinaryOp.java", "diff": "@@ -592,7 +592,7 @@ public class BinaryOp extends Hop\nif ( et == ExecType.CP )\n{\nif(DMLScript.USE_ACCELERATOR && (DMLScript.FORCE_A...
Java
Apache License 2.0
apache/systemds
[SYSTEMML-1034] Initial implementation of "solve" for GPU Closes #476
49,761
01.05.2017 11:50:23
25,200
5aa6fb75b066228d723dfc88bc0ae24551812e92
New Jupyter Python Notebook to showcase SystemML 2-layer autoencoder for acoustic signal modeling Closes
[ { "change_type": "ADD", "old_path": null, "new_path": "samples/jupyter-notebooks/Autoencoder.ipynb", "diff": "+{\n+ \"cells\": [\n+ {\n+ \"cell_type\": \"markdown\",\n+ \"metadata\": {},\n+ \"source\": [\n+ \"# Autoencoder\\n\",\n+ \"This notebook demonstrates the invocation of the SystemML autoenco...
Java
Apache License 2.0
apache/systemds
[SYSTEMML-1571] New Jupyter Python Notebook to showcase SystemML 2-layer autoencoder for acoustic signal modeling Closes #478.
49,728
01.05.2017 12:02:27
25,200
7ce130855d66d94b79f1dabcb4eb584eccc9663c
Scalable linear algebra DML implementations and accompanying DML tests for Cholesky, LU, QR, Solve, Inverse and util functions. Closes
[ { "change_type": "ADD", "old_path": null, "new_path": "scripts/staging/scalable_linalg/cholesky.dml", "diff": "+#-------------------------------------------------------------\n+#\n+# Licensed to the Apache Software Foundation (ASF) under one\n+# or more contributor license agreements. See the NOTICE...
Java
Apache License 2.0
apache/systemds
[SYSTEMML-1213] Scalable linear algebra DML implementations and accompanying DML tests for Cholesky, LU, QR, Solve, Inverse and util functions. Closes #368.
49,736
01.05.2017 15:08:39
28,800
8e5599dd9fa94a1b4467ea2866c7203aeac90d12
[HOTFIX] Adding antlr runtime and wink jars
[ { "change_type": "MODIFY", "old_path": "pom.xml", "new_path": "pom.xml", "diff": "<artifactId>maven-jar-plugin</artifactId>\n<executions>\n<execution>\n+ <id>default-jar</id>\n<goals><goal>jar</goal></goals>\n<phase>package</phase>\n<configuration>\n<Main-Class>org.apache.sysml.api.DMLScript</Main-C...
Java
Apache License 2.0
apache/systemds
[HOTFIX] Adding antlr runtime and wink jars
49,736
01.05.2017 15:55:44
28,800
1cc219527c88a85b256f3c2230e06b176b4fd679
Allow Python mllearn estimators to force the usage of GPU Closes
[ { "change_type": "MODIFY", "old_path": "src/main/java/org/apache/sysml/api/mlcontext/MLContext.java", "new_path": "src/main/java/org/apache/sysml/api/mlcontext/MLContext.java", "diff": "@@ -99,6 +99,11 @@ public class MLContext {\n*/\nprivate boolean gpu = false;\n+ /**\n+ * Whether or not GPU mode ...
Java
Apache License 2.0
apache/systemds
[SYSTEMML-1552] Allow Python mllearn estimators to force the usage of GPU Closes #480.
49,717
01.05.2017 17:50:44
25,200
7989ab4f39802d0706618d495d06cb8126f98300
[HOTFIX] changes setGPU and setForceGPU to do the right thing in mlctx
[ { "change_type": "MODIFY", "old_path": "src/main/java/org/apache/sysml/api/mlcontext/ScriptExecutor.java", "new_path": "src/main/java/org/apache/sysml/api/mlcontext/ScriptExecutor.java", "diff": "@@ -248,11 +248,7 @@ public class ScriptExecutor {\nif (symbolTable != null) {\nexecutionContext.setVari...
Java
Apache License 2.0
apache/systemds
[HOTFIX] changes setGPU and setForceGPU to do the right thing in mlctx
49,736
02.05.2017 10:25:01
28,800
8324b69f11fb71890e0b592603e759c68f4db87f
[HOTFIX] Allows multiple MLContext to set the configuration property Also, added bugfix in mllearn to enable force GPU option.
[ { "change_type": "MODIFY", "old_path": "src/main/java/org/apache/sysml/api/mlcontext/ScriptExecutor.java", "new_path": "src/main/java/org/apache/sysml/api/mlcontext/ScriptExecutor.java", "diff": "@@ -248,8 +248,30 @@ public class ScriptExecutor {\nif (symbolTable != null) {\nexecutionContext.setVari...
Java
Apache License 2.0
apache/systemds
[HOTFIX] Allows multiple MLContext to set the configuration property - Also, added bugfix in mllearn to enable force GPU option.
49,736
02.05.2017 15:48:49
28,800
47c2dd10f43e3f348c4372a8a7b34fa04705930a
[MINOR] Updated documentation and improved log messages Also, BLAS is disabled by default. We can enable it after more rigorous testing.
[ { "change_type": "MODIFY", "old_path": "conf/SystemML-config.xml.template", "new_path": "conf/SystemML-config.xml.template", "diff": "<codegen.literals>1</codegen.literals>\n<!-- enables native blas for matrix multiplication and convolution, experimental feature -->\n- <native.blas>true</native.blas...
Java
Apache License 2.0
apache/systemds
[MINOR] Updated documentation and improved log messages - Also, BLAS is disabled by default. We can enable it after more rigorous testing.
49,736
02.05.2017 17:32:53
25,200
aa6d38c94b632d7fb09869a78887df8485ddeaf3
[MINOR] Show native library paths only when log4j is set debug or lower level
[ { "change_type": "MODIFY", "old_path": "src/main/java/org/apache/sysml/utils/NativeHelper.java", "new_path": "src/main/java/org/apache/sysml/utils/NativeHelper.java", "diff": "@@ -115,6 +115,8 @@ public class NativeHelper {\nString blasPathAndHint = \"\";\n// ----------------------------------------...
Java
Apache License 2.0
apache/systemds
[MINOR] Show native library paths only when log4j is set debug or lower level
49,736
03.05.2017 15:15:18
25,200
29c307c9ae5f416d2caac7e6e21aeb8d375dd8e5
Remove the usage of SYSTEMML_BLAS environment variable from NativeHelper
[ { "change_type": "MODIFY", "old_path": "conf/SystemML-config.xml.template", "new_path": "conf/SystemML-config.xml.template", "diff": "<!-- if codegen.enabled, compile literals as constants: 1..heuristic, 2..always -->\n<codegen.literals>1</codegen.literals>\n- <!-- enables native blas for matrix mul...
Java
Apache License 2.0
apache/systemds
[SYSTEMML-1580] Remove the usage of SYSTEMML_BLAS environment variable from NativeHelper
49,736
03.05.2017 21:02:14
28,800
76f3ca5d39e492fc3075c4bd8240ec5339647001
[HOTFIX] Bugfix for metadata of conv2d_* and maxpool_* operations
[ { "change_type": "MODIFY", "old_path": "src/main/java/org/apache/sysml/hops/ConvolutionOp.java", "new_path": "src/main/java/org/apache/sysml/hops/ConvolutionOp.java", "diff": "@@ -242,30 +242,43 @@ public class ConvolutionOp extends Hop implements MultiThreadedHop\nswitch(op)\n{\ncase MAX_POOLING: {...
Java
Apache License 2.0
apache/systemds
[HOTFIX] Bugfix for metadata of conv2d_* and maxpool_* operations
49,717
04.05.2017 16:26:47
25,200
2c5c3b14e1906cda70ae1581b19a5e908b3ab329
[HOTFIX] Bug fix for solve, removed warnings and added instrumentation
[ { "change_type": "MODIFY", "old_path": "src/main/java/org/apache/sysml/runtime/instructions/GPUInstructionParser.java", "new_path": "src/main/java/org/apache/sysml/runtime/instructions/GPUInstructionParser.java", "diff": "@@ -35,9 +35,9 @@ import org.apache.sysml.runtime.instructions.gpu.AggregateUn...
Java
Apache License 2.0
apache/systemds
[HOTFIX] Bug fix for solve, removed warnings and added instrumentation
49,772
05.05.2017 13:45:23
25,200
abc9686fbaaa11c12cfa02c49c7675165acdf176
[MINOR] Adding documentation to IPA functions.
[ { "change_type": "MODIFY", "old_path": "src/main/java/org/apache/sysml/hops/ipa/InterProceduralAnalysis.java", "new_path": "src/main/java/org/apache/sysml/hops/ipa/InterProceduralAnalysis.java", "diff": "@@ -461,6 +461,19 @@ public class InterProceduralAnalysis\n// INTRA-PROCEDURE ANALYSIS\n//////\n...
Java
Apache License 2.0
apache/systemds
[MINOR] Adding documentation to IPA functions.
49,736
05.05.2017 13:53:35
28,800
b9814ccf0c024828d3f9c3e92b505ffb73ad73a1
Additional tests to compare the accuracy of different convolution related operators with CuDNN Closes
[ { "change_type": "MODIFY", "old_path": "pom.xml", "new_path": "pom.xml", "diff": "<exclude>perftest</exclude>\n<exclude>staging/**/*</exclude>\n<exclude>staging</exclude>\n+ <exclude>nn/test/**/*</exclude>\n<!-- <exclude>*.sh</exclude> --> <!-- applies to sparkDML.sh -->\n</excludes>\n<targetPath>sc...
Java
Apache License 2.0
apache/systemds
[SYSTEMML-540] Additional tests to compare the accuracy of different convolution related operators with CuDNN Closes #477.
49,736
05.05.2017 15:32:12
28,800
44d7a88576dccce0bc2262588eb25cb521ca739d
[MINOR] Added SGDNesterovUpdate UDF support to Caffe2DML This will allow us to extrapolate the performance gains using codegen. The UDF is disabled by default and is enabled only after setting `export USE_NESTEROV_UDF="true"`. We will remove this flag and also the class org.apache.sysml.udf.lib.SGDNesterovUpdate after codegen is stable.
[ { "change_type": "MODIFY", "old_path": "src/main/java/org/apache/sysml/udf/lib/SGDNesterovUpdate.java", "new_path": "src/main/java/org/apache/sysml/udf/lib/SGDNesterovUpdate.java", "diff": "@@ -68,6 +68,10 @@ public class SGDNesterovUpdate extends PackageFunction {\nthrow new RuntimeException(\"Inva...
Java
Apache License 2.0
apache/systemds
[MINOR] Added SGDNesterovUpdate UDF support to Caffe2DML This will allow us to extrapolate the performance gains using codegen. The UDF is disabled by default and is enabled only after setting `export USE_NESTEROV_UDF="true"`. We will remove this flag and also the class org.apache.sysml.udf.lib.SGDNesterovUpdate after codegen is stable.
49,738
07.05.2017 15:25:44
25,200
576eb4e96a3aabacfd067be1ce5a644b83ce422e
[MINOR] Fix flaky matrix converter tests (static allocated sync points)
[ { "change_type": "MODIFY", "old_path": "src/main/java/org/apache/sysml/runtime/io/MatrixReader.java", "new_path": "src/main/java/org/apache/sysml/runtime/io/MatrixReader.java", "diff": "@@ -116,8 +116,10 @@ public abstract class MatrixReader\n//create synchronization points for MCSR (start row per b...
Java
Apache License 2.0
apache/systemds
[MINOR] Fix flaky matrix converter tests (static allocated sync points)
49,736
07.05.2017 19:34:12
28,800
6863632088c8d0b548a17413692b399d512a991d
Check for the empty block case Closes
[ { "change_type": "MODIFY", "old_path": "src/main/java/org/apache/sysml/runtime/instructions/cp/ConvolutionCPInstruction.java", "new_path": "src/main/java/org/apache/sysml/runtime/instructions/cp/ConvolutionCPInstruction.java", "diff": "@@ -226,7 +226,7 @@ public class ConvolutionCPInstruction extend...
Java
Apache License 2.0
apache/systemds
[SYSTEMML-1589] Check for the empty block case Closes #487.
49,738
07.05.2017 20:49:38
25,200
19e21744c86adbedf6098906808c2c6327659cfe
Fix codegen handling of unsupported row aggregates
[ { "change_type": "MODIFY", "old_path": "src/main/java/org/apache/sysml/hops/codegen/template/TemplateRow.java", "new_path": "src/main/java/org/apache/sysml/hops/codegen/template/TemplateRow.java", "diff": "@@ -78,7 +78,8 @@ public class TemplateRow extends TemplateBase\n|| (hop instanceof AggBinaryO...
Java
Apache License 2.0
apache/systemds
[SYSTEMML-1590] Fix codegen handling of unsupported row aggregates
49,736
07.05.2017 20:17:21
28,800
6c215e700c1855074228972f952663663f6eabaa
Incorporate ALLOW_OPERATOR_FUSION in ConvolutionOp for developer testing Closes
[ { "change_type": "MODIFY", "old_path": "src/main/java/org/apache/sysml/hops/ConvolutionOp.java", "new_path": "src/main/java/org/apache/sysml/hops/ConvolutionOp.java", "diff": "@@ -153,15 +153,15 @@ public class ConvolutionOp extends Hop implements MultiThreadedHop\n// RELU_MAX_POOLING and RELU_MAX_P...
Java
Apache License 2.0
apache/systemds
[SYSTEMML-1573] Incorporate ALLOW_OPERATOR_FUSION in ConvolutionOp for developer testing Closes #482.
49,736
09.05.2017 22:30:32
25,200
755121f93d036df0c182edbf9a41640993f75535
[MINOR] Included nn test dml files into the jar This change makes it easier to test in different environments to ensure that everything is running correctly.
[ { "change_type": "MODIFY", "old_path": "pom.xml", "new_path": "pom.xml", "diff": "<exclude>perftest</exclude>\n<exclude>staging/**/*</exclude>\n<exclude>staging</exclude>\n- <exclude>nn/test/**/*</exclude>\n+ <exclude>nn/test/compare_backends/*</exclude>\n<!-- <exclude>*.sh</exclude> --> <!-- applie...
Java
Apache License 2.0
apache/systemds
[MINOR] Included nn test dml files into the jar This change makes it easier to test in different environments to ensure that everything is running correctly.
49,766
11.05.2017 06:20:06
25,200
8ad35c5b1a6958862dfab3d5f6232988ce57f36e
Update license to remove reference to node_modules Node_modules is just a build temporary folder generated by the website/documentation build and not shipped with SystemML.
[ { "change_type": "MODIFY", "old_path": "src/assembly/source/LICENSE", "new_path": "src/assembly/source/LICENSE", "diff": "@@ -372,12 +372,3 @@ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, ...
Java
Apache License 2.0
apache/systemds
[SYSTEMML-1601] Update license to remove reference to node_modules Node_modules is just a build temporary folder generated by the website/documentation build and not shipped with SystemML.
49,766
11.05.2017 06:33:01
25,200
88e79bb341ea099e932cd85ace75389a5cb53ca7
Fix Sizzle license It seems that the sizzle.js license got split when the pygments-default.css license was added.
[ { "change_type": "MODIFY", "old_path": "src/assembly/source/LICENSE", "new_path": "src/assembly/source/LICENSE", "diff": "@@ -322,6 +322,28 @@ available at https://github.com/jquery/sizzle\nThe following license applies to all parts of this software except as\ndocumented below:\n+===\n+\n+Permission...
Java
Apache License 2.0
apache/systemds
[SYSTEMML-1601] Fix Sizzle license It seems that the sizzle.js license got split when the pygments-default.css license was added.
49,768
12.05.2017 10:01:14
25,200
6adcb369d3b9472cfe560c3dd7fef3be2a527bc5
Add Linear Regression Notebook example
[ { "change_type": "ADD", "old_path": null, "new_path": "samples/jupyter-notebooks/Linear_Regression_Algorithms_Demo.ipynb", "diff": "+{\n+ \"cells\": [\n+ {\n+ \"cell_type\": \"markdown\",\n+ \"metadata\": {},\n+ \"source\": [\n+ \"This notebook shows:\\n\",\n+ \"- Install SystemML Python package and...
Java
Apache License 2.0
apache/systemds
[SYSTEMML-1607] Add Linear Regression Notebook example
49,767
12.05.2017 13:59:20
25,200
d04d2381f369bc29c4c33e98381bcdc8a4d0aebb
Add Deconvolution layer in nn library. Closes
[ { "change_type": "ADD", "old_path": null, "new_path": "scripts/nn/layers/conv2d_transpose.dml", "diff": "+#-------------------------------------------------------------\n+#\n+# Licensed to the Apache Software Foundation (ASF) under one\n+# or more contributor license agreements. See the NOTICE file\...
Java
Apache License 2.0
apache/systemds
[SYSTEMML-1483] Add Deconvolution layer in nn library. Closes #490.
49,737
16.05.2017 10:59:11
25,200
ecadf0fe8d1ae88b7b79c9fee99d6a58a847be77
Display version in MLContext welcome message Closes
[ { "change_type": "MODIFY", "old_path": "src/main/java/org/apache/sysml/api/mlcontext/MLContextUtil.java", "new_path": "src/main/java/org/apache/sysml/api/mlcontext/MLContextUtil.java", "diff": "@@ -976,6 +976,14 @@ public final class MLContextUtil {\npublic static String welcomeMessage() {\nStringBu...
Java
Apache License 2.0
apache/systemds
[SYSTEMML-1600] Display version in MLContext welcome message Closes #502.
49,768
17.05.2017 10:09:51
25,200
0d553e38496560fff431808080b6566b295d7911
Update notebook samples with latest code Delayed "Flight Delay Prediction" notebook temporarily due to issues.
[ { "change_type": "DELETE", "old_path": "samples/jupyter-notebooks/Flight_Delay_Demo.ipynb", "new_path": null, "diff": "-{\"nbformat_minor\": 0, \"cells\": [{\"source\": \"# Flight Delay Prediction Demo Using SystemML\", \"cell_type\": \"markdown\", \"metadata\": {}}, {\"source\": \"This notebook is ...
Java
Apache License 2.0
apache/systemds
[SYSTEMML-1606] Update notebook samples with latest code Delayed "Flight Delay Prediction" notebook temporarily due to issues.
49,717
17.05.2017 18:46:21
25,200
c3aeb48bf6b54febb861b7b4381c3d7af450a8e8
[HOTFIX] for sparse GPU transpose
[ { "change_type": "MODIFY", "old_path": "src/main/java/org/apache/sysml/runtime/matrix/data/LibMatrixCUDA.java", "new_path": "src/main/java/org/apache/sysml/runtime/matrix/data/LibMatrixCUDA.java", "diff": "@@ -52,6 +52,7 @@ import static jcuda.jcudnn.cudnnDataType.CUDNN_DATA_DOUBLE;\nimport static j...
Java
Apache License 2.0
apache/systemds
[HOTFIX] for sparse GPU transpose
49,737
19.05.2017 14:01:07
25,200
a6428f7d88b39792ccb5440b5bc3bedff4df21de
Change the term PLAIN_R2 to R2 Closes
[ { "change_type": "MODIFY", "old_path": "docs/hadoop-batch-mode.md", "new_path": "docs/hadoop-batch-mode.md", "diff": "@@ -760,11 +760,11 @@ Let's go ahead and run the SystemML example from the GitHub README.\nAVG_RES_Y,1.5905895170230406E-10\nSTDEV_RES_Y,2.0668015575844624E-8\nDISPERSION,4.262683023...
Java
Apache License 2.0
apache/systemds
[SYSTEMML-1455] Change the term PLAIN_R2 to R2 Closes #500.
49,768
21.05.2017 11:05:12
25,200
259742c400287d2dbc85ca30631f06af7e33cf43
Update notebook samples with latest code Removed SystemML setup instructions from most of the notebooks.
[ { "change_type": "MODIFY", "old_path": "samples/jupyter-notebooks/Autoencoder.ipynb", "new_path": "samples/jupyter-notebooks/Autoencoder.ipynb", "diff": "\"cell_type\": \"markdown\",\n\"metadata\": {},\n\"source\": [\n- \"# Install SystemML Python package and jar file\\n\",\n- \"You can install Syst...
Java
Apache License 2.0
apache/systemds
[SYSTEMML-1606] Update notebook samples with latest code Removed SystemML setup instructions from most of the notebooks.
49,768
21.05.2017 17:38:56
25,200
fc612f2e08f8bab9daa74a451c0b618c2d92543d
Update notebook samples with latest code Updated Deep Learning notebook compatible with 0.14 release code
[ { "change_type": "MODIFY", "old_path": "samples/jupyter-notebooks/Deep_Learning_Image_Classification.ipynb", "new_path": "samples/jupyter-notebooks/Deep_Learning_Image_Classification.ipynb", "diff": "\"cell_type\": \"markdown\",\n\"metadata\": {},\n\"source\": [\n- \"# Deep Learning Image Classifica...
Java
Apache License 2.0
apache/systemds
[SYSTEMML-1606] Update notebook samples with latest code Updated Deep Learning notebook compatible with 0.14 release code
49,772
22.05.2017 16:39:09
25,200
e93fdd35b82e95fd41023850939593d5d37c8512
Add stain normalization to breast cancer preprocessing. Adding stain normalization of H&E histology slides for the breast cancer project. Closes
[ { "change_type": "MODIFY", "old_path": "projects/breast_cancer/breastcancer/preprocessing.py", "new_path": "projects/breast_cancer/breastcancer/preprocessing.py", "diff": "@@ -199,7 +199,7 @@ def process_tile_index(tile_index, folder, training):\n# Create tile generator.\ngenerator = create_tile_gen...
Java
Apache License 2.0
apache/systemds
[SYSTEMML-1465] Add stain normalization to breast cancer preprocessing. Adding stain normalization of H&E histology slides for the breast cancer project. Closes #507.
49,768
23.05.2017 11:08:36
25,200
16ccfa0571d5a69c2e22ea2c6c1463102849d59c
Update notebook samples with latest code Updated few sample notebooks to support both Python 2.x and Python 3.x
[ { "change_type": "MODIFY", "old_path": "samples/jupyter-notebooks/Autoencoder.ipynb", "new_path": "samples/jupyter-notebooks/Autoencoder.ipynb", "diff": "{\n\"cell_type\": \"code\",\n\"execution_count\": null,\n- \"metadata\": {},\n+ \"metadata\": {\n+ \"collapsed\": true\n+ },\n\"outputs\": [],\n\"...
Java
Apache License 2.0
apache/systemds
[SYSTEMML-1606] Update notebook samples with latest code Updated few sample notebooks to support both Python 2.x and Python 3.x
49,738
24.05.2017 09:51:04
25,200
eea72ce577d96fc00d5548df45672b1eb9360a9f
[HOTFIX][SYSTEMML-1621] Fix value type inference log (int/int-double)
[ { "change_type": "MODIFY", "old_path": "src/main/java/org/apache/sysml/parser/BuiltinFunctionExpression.java", "new_path": "src/main/java/org/apache/sysml/parser/BuiltinFunctionExpression.java", "diff": "@@ -1173,7 +1173,7 @@ public class BuiltinFunctionExpression extends DataIdentifier\nbreak;\n}\n...
Java
Apache License 2.0
apache/systemds
[HOTFIX][SYSTEMML-1621] Fix value type inference log (int/int-double)
49,738
25.05.2017 14:36:38
25,200
c697c30ebbfb24872f379523793a2c121553bb1c
[MINOR] Fix codegen row template construction (input ordering w/ vma)
[ { "change_type": "MODIFY", "old_path": "src/main/java/org/apache/sysml/hops/codegen/template/TemplateRow.java", "new_path": "src/main/java/org/apache/sysml/hops/codegen/template/TemplateRow.java", "diff": "@@ -200,6 +200,7 @@ public class TemplateRow extends TemplateBase\ninHops.add(hop.getInput().g...
Java
Apache License 2.0
apache/systemds
[MINOR] Fix codegen row template construction (input ordering w/ vma)
49,737
25.05.2017 23:00:52
25,200
0a89676fa67a891bdcc87bc526071e53a35a2d87
Kmeans isY and verb parameters should be boolean Change Kmeans.dml isY and verb parameters to boolean. Closes
[ { "change_type": "MODIFY", "old_path": "scripts/algorithms/Kmeans.dml", "new_path": "scripts/algorithms/Kmeans.dml", "diff": "# tol Double 0.000001 Tolerance (epsilon) for WCSS change ratio\n# samp Int 50 Average number of records per centroid in data samples\n# C String \"C.mtx\" Location to store ...
Java
Apache License 2.0
apache/systemds
[SYSTEMML-1380] Kmeans isY and verb parameters should be boolean Change Kmeans.dml isY and verb parameters to boolean. Closes #516.
49,736
26.05.2017 09:56:02
25,200
fd41f0253810a8d0ea62e4fb21854229dfe526ef
Remove confusing warning for disabled native BLAS
[ { "change_type": "MODIFY", "old_path": "src/main/java/org/apache/sysml/utils/NativeHelper.java", "new_path": "src/main/java/org/apache/sysml/utils/NativeHelper.java", "diff": "@@ -145,7 +145,7 @@ public class NativeHelper {\nLOG.warn(\"Time to load native blas: \" + timeToLoadInMilliseconds + \" mil...
Java
Apache License 2.0
apache/systemds
[SYSTEMML-1630] Remove confusing warning for disabled native BLAS
49,736
26.05.2017 12:25:36
25,200
3a1431c8486898c03bf2be5e18f33b4e35edad84
[MINOR] Updated the documentation for mllearn and python dsl Added design document for mllearn in BaseSystemMLClassifier class Add Python DSL documentation Updated Native backend documentation wrt MKL DNN Caffe2DML documentation: minor updates
[ { "change_type": "MODIFY", "old_path": "docs/beginners-guide-caffe2dml.md", "new_path": "docs/beginners-guide-caffe2dml.md", "diff": "@@ -95,7 +95,7 @@ lenet.setStatistics(True).setExplain(True)\n# If you want to force GPU execution. Please make sure the required dependency are available.\n# lenet.s...
Java
Apache License 2.0
apache/systemds
[MINOR] Updated the documentation for mllearn and python dsl - Added design document for mllearn in BaseSystemMLClassifier class - Add Python DSL documentation - Updated Native backend documentation wrt MKL DNN - Caffe2DML documentation: minor updates
49,736
26.05.2017 12:46:38
25,200
b4efc3dfbdfbfc65d3150924b2e3533e557879c9
[MINOR] Fixed the format in the native-backend documentation
[ { "change_type": "MODIFY", "old_path": "docs/native-backend.md", "new_path": "docs/native-backend.md", "diff": "@@ -74,7 +74,7 @@ sudo make install\n# After installation, you may also want to add `/opt/OpenBLAS/lib` to your LD_LIBRARY_PATH or `java.library.path`.\n```\n-We also depend on GNU OpenMP ...
Java
Apache License 2.0
apache/systemds
[MINOR] Fixed the format in the native-backend documentation
49,738
28.05.2017 13:55:11
25,200
b4dd2c1bf66a642cc622c57bb690e4f599de723c
Codegen multi-aggregates over compressed matrices This patch extends the codegen support for compressed matrices to multi-aggregate operations including tests. Furthermore, this also includes a fix of javadocs regarding recently removed classes.
[ { "change_type": "MODIFY", "old_path": "src/main/java/org/apache/sysml/runtime/codegen/SpoofMultiAggregate.java", "new_path": "src/main/java/org/apache/sysml/runtime/codegen/SpoofMultiAggregate.java", "diff": "@@ -22,6 +22,7 @@ package org.apache.sysml.runtime.codegen;\nimport java.io.Serializable;\...
Java
Apache License 2.0
apache/systemds
[SYSTEMML-1289] Codegen multi-aggregates over compressed matrices This patch extends the codegen support for compressed matrices to multi-aggregate operations including tests. Furthermore, this also includes a fix of javadocs regarding recently removed classes.