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,758
15.10.2019 22:56:02
-7,200
656c4686035fc2241e00c2974226c1a6b678c2fd
Parallel implementation of sort() (invoked by DML function order() ) Closes
[ { "change_type": "MODIFY", "old_path": ".gitignore", "new_path": ".gitignore", "diff": "@@ -17,6 +17,9 @@ maven-eclipse.xml\n*.iml\n*.iws\n+# vscode\n+.vscode\n+\n# checksum files\n*.crc\n" }, { "change_type": "MODIFY", "old_path": "docs/Tasks.txt", "new_path": "docs/Tasks.txt", ...
Java
Apache License 2.0
apache/systemds
[SYSTEMDS-191] Parallel implementation of sort() (invoked by DML function order() ) Closes #65
49,720
07.12.2019 17:38:36
-3,600
ec557c14edd1e9f1a2e997f28e87b33db438a6f7
Cleanup detectSchema builtin function CleanUp_DetectSchema 1. Test file moved to Frame Package 2. String handling changes with ValueType 3. Double overflow handled 4. Sample storage removed 5. DML test file moved to functions/frame Closes
[ { "change_type": "MODIFY", "old_path": "src/main/java/org/tugraz/sysds/runtime/matrix/data/FrameBlock.java", "new_path": "src/main/java/org/tugraz/sysds/runtime/matrix/data/FrameBlock.java", "diff": "@@ -35,7 +35,6 @@ import java.io.*;\nimport java.lang.ref.SoftReference;\nimport java.util.*;\nimpor...
Java
Apache License 2.0
apache/systemds
[SYSTEMDS-183] Cleanup detectSchema builtin function CleanUp_DetectSchema 1. Test file moved to Frame Package 2. String handling changes with ValueType 3. Double overflow handled 4. Sample storage removed 5. DML test file moved to functions/frame Closes #64.
49,720
07.12.2019 18:55:48
-3,600
7a11d1b6648de4f24a2b3c8499b99ea5c86fd185
Multiple imputation using chained equation (MICE) 1. Main DML script (mice_linearReg.dml) 2. Java test file (BuiltinMiceLinearRegTest.java) 3. DML test script (mice_linearRegression.dml) Closes
[ { "change_type": "ADD", "old_path": null, "new_path": "scripts/builtin/mice_lm.dml", "diff": "+#-------------------------------------------------------------\n+#\n+# Copyright 2019 Graz University of Technology\n+#\n+# Licensed under the Apache License, Version 2.0 (the \"License\");\n+# you may not...
Java
Apache License 2.0
apache/systemds
[SYSTEMDS-189] Multiple imputation using chained equation (MICE) 1. Main DML script (mice_linearReg.dml) 2. Java test file (BuiltinMiceLinearRegTest.java) 3. DML test script (mice_linearRegression.dml) Closes #70.
49,738
07.12.2019 20:42:00
-3,600
2b0f5f763439902cc9b3581f521d23da459fc896
[MINOR] Improved size inference for removeEmpty operations RemoveEmpty rows/column operations allow to specify an optional select vector where non-zeros determine the selected rows and columns. We now exploit the number-of-non-zeros in these select vectors to exactly determine the number of output rows/columns.
[ { "change_type": "MODIFY", "old_path": "docs/Tasks.txt", "new_path": "docs/Tasks.txt", "diff": "@@ -145,6 +145,7 @@ SYSTEMDS-190 New Builtin Functions III\nSYSTEMDS-200 Various Fixes\n* 201 Fix spark append instruction zero columns OK\n+ * 202 Fix rewrite split DAG multiple removeEmpty (pending op)\...
Java
Apache License 2.0
apache/systemds
[MINOR] Improved size inference for removeEmpty operations RemoveEmpty rows/column operations allow to specify an optional select vector where non-zeros determine the selected rows and columns. We now exploit the number-of-non-zeros in these select vectors to exactly determine the number of output rows/columns.
49,689
07.12.2019 21:40:22
-3,600
c08893059474b60cd9c411f5bdd076f076da078f
Append operations (rbind/cbind) over lists of matrices Initial version of rbind/cbind of List of matrices Single list of only matrices Only local execution Closes
[ { "change_type": "MODIFY", "old_path": "src/main/java/org/tugraz/sysds/parser/BuiltinFunctionExpression.java", "new_path": "src/main/java/org/tugraz/sysds/parser/BuiltinFunctionExpression.java", "diff": "@@ -750,6 +750,10 @@ public class BuiltinFunctionExpression extends DataIdentifier\ncheckValueTy...
Java
Apache License 2.0
apache/systemds
[SYSTEMDS-211] Append operations (rbind/cbind) over lists of matrices Initial version of rbind/cbind of List of matrices Single list of only matrices Only local execution Closes #63.
49,738
07.12.2019 22:57:20
-3,600
13472964c8f6ff2fc233ed1c9ca425d87acef9cf
Creation of empty lists for append in loops This patch generalizes the constructions of lists (compiler/runtime) to support zero inputs, which is useful for appending parts in a loop.
[ { "change_type": "MODIFY", "old_path": "docs/Tasks.txt", "new_path": "docs/Tasks.txt", "diff": "@@ -147,5 +147,11 @@ SYSTEMDS-200 Various Fixes\n* 201 Fix spark append instruction zero columns OK\n* 202 Fix rewrite split DAG multiple removeEmpty (pending op)\n+SYSTEMDS-210 Extended lists Operations\...
Java
Apache License 2.0
apache/systemds
[SYSTEMDS-212] Creation of empty lists for append in loops This patch generalizes the constructions of lists (compiler/runtime) to support zero inputs, which is useful for appending parts in a loop.
49,738
08.12.2019 00:02:06
-3,600
e201c9b042656ddb66aa741f6afbc0aeb412349d
Extended binary append operations for list append This patch adds the functionality of appending arbitrary data objects to lists, which is useful for constructing collections of matrices (e.g., CV). Furthermore, this also includes a cleanup of all CP append instructions.
[ { "change_type": "MODIFY", "old_path": "docs/Tasks.txt", "new_path": "docs/Tasks.txt", "diff": "@@ -150,7 +150,7 @@ SYSTEMDS-200 Various Fixes\nSYSTEMDS-210 Extended lists Operations\n* 211 Cbind and Rbind over lists of matrices OK\n* 212 Creation of empty lists OK\n- * 213 Add entries to lists\n+ *...
Java
Apache License 2.0
apache/systemds
[SYSTEMDS-213] Extended binary append operations for list append This patch adds the functionality of appending arbitrary data objects to lists, which is useful for constructing collections of matrices (e.g., CV). Furthermore, this also includes a cleanup of all CP append instructions.
49,738
08.12.2019 01:05:41
-3,600
bc1a6a1985a8df7c68bd46cb3acbf073fd5e44a0
New remove builtin function for list entry removals This patch adds a new multi-return builtin function of the following pattern, that removes the ith entry from list L and returns the modified list L2 (without the entry) and x (the removed entry). [L2, x] = remove(L, i);
[ { "change_type": "MODIFY", "old_path": "docs/Tasks.txt", "new_path": "docs/Tasks.txt", "diff": "@@ -151,7 +151,7 @@ SYSTEMDS-210 Extended lists Operations\n* 211 Cbind and Rbind over lists of matrices OK\n* 212 Creation of empty lists OK\n* 213 Add entries to lists OK\n- * 214 Removal of entries fro...
Java
Apache License 2.0
apache/systemds
[SYSTEMDS-214] New remove builtin function for list entry removals This patch adds a new multi-return builtin function of the following pattern, that removes the ith entry from list L and returns the modified list L2 (without the entry) and x (the removed entry). [L2, x] = remove(L, i);
49,738
10.12.2019 20:51:49
-3,600
0421b6d21359dccc2a4d780c684005357299fa39
Fix exec type selection rbind/cbind over lists This patch fixes an issue of invalid execution type selection as rbind and cbind over lists are currently only supported in CP.
[ { "change_type": "MODIFY", "old_path": "src/main/java/org/tugraz/sysds/hops/BinaryOp.java", "new_path": "src/main/java/org/tugraz/sysds/hops/BinaryOp.java", "diff": "@@ -761,7 +761,8 @@ public class BinaryOp extends MultiThreadedHop\nelse\n_etype = ExecType.CP;\n}\n- else if( op == OpOp2.CBIND && ge...
Java
Apache License 2.0
apache/systemds
[SYSTEMDS-211] Fix exec type selection rbind/cbind over lists This patch fixes an issue of invalid execution type selection as rbind and cbind over lists are currently only supported in CP.
49,720
14.12.2019 11:40:21
-3,600
60d16f6d69e901e9ff1025bdcc378ba89fbce8cf
New built-in function multiLogReg algorithm, incl tests Builtin Multinomial Logistic Regression using Trust Region methods Closes
[ { "change_type": "MODIFY", "old_path": "docs/Tasks.txt", "new_path": "docs/Tasks.txt", "diff": "@@ -142,6 +142,7 @@ SYSTEMDS-180 New Builtin Functions II OK\n* 189 Builtin function mice (chained equation imputation) OK\nSYSTEMDS-190 New Builtin Functions III\n+ * 191 Builtin function multi logreg OK...
Java
Apache License 2.0
apache/systemds
[SYSTEMDS-191] New built-in function multiLogReg algorithm, incl tests Builtin Multinomial Logistic Regression using Trust Region methods Closes #73.
49,689
14.12.2019 14:27:39
-3,600
3ec19628e582db9d59938d3831fb5a9438a9f1d4
Lineage handling for lists during dynamic recompilation Closes
[ { "change_type": "MODIFY", "old_path": "docs/Tasks.txt", "new_path": "docs/Tasks.txt", "diff": "@@ -129,6 +129,7 @@ SYSTEMDS-170 Lineage full and partial reuse\n* 176 Reuse rewrite for cbind/rbind-elementwise */+\n* 177 Reuse rewrite for aggregate OK\n* 178 Compiler assisted reuse (eg. CV, lmCG)\n+ ...
Java
Apache License 2.0
apache/systemds
[SYSTEMDS-179] Lineage handling for lists during dynamic recompilation Closes #75.
49,738
14.12.2019 15:02:43
-3,600
9bdd3583b07a4f13611db1c5b5123459e77b44cb
[MINOR] Fix missing lineage tracing spark nary builtin / write
[ { "change_type": "MODIFY", "old_path": "src/main/java/org/tugraz/sysds/api/DMLOptions.java", "new_path": "src/main/java/org/tugraz/sysds/api/DMLOptions.java", "diff": "@@ -124,6 +124,8 @@ public class DMLOptions {\ndmlOptions.linReuseType = ReuseCacheType.REUSE_PARTIAL;\nelse if (lineageType.equalsI...
Java
Apache License 2.0
apache/systemds
[MINOR] Fix missing lineage tracing spark nary builtin / write
49,738
14.12.2019 15:14:50
-3,600
6b514d740bb8d09443fd244a02b0e325f0e4bc0f
[MINOR] Robustness lineage cache handling (large objects, mem frac) This patch improves the robustness of the lineage cache by gracefully ignoring large objects (instead of throwing exceptions) and using a cache size of 5% relative to the max heap configuration.
[ { "change_type": "MODIFY", "old_path": "src/main/java/org/tugraz/sysds/runtime/lineage/LineageCache.java", "new_path": "src/main/java/org/tugraz/sysds/runtime/lineage/LineageCache.java", "diff": "@@ -24,6 +24,7 @@ import org.tugraz.sysds.parser.Statement;\nimport org.tugraz.sysds.runtime.DMLRuntimeE...
Java
Apache License 2.0
apache/systemds
[MINOR] Robustness lineage cache handling (large objects, mem frac) This patch improves the robustness of the lineage cache by gracefully ignoring large objects (instead of throwing exceptions) and using a cache size of 5% relative to the max heap configuration.
49,738
15.12.2019 16:24:48
-3,600
5236e4dcd8d016dca4631555f26420d5c59c25f8
[MINOR] Remove non-default systemds-config from conf directory
[ { "change_type": "DELETE", "old_path": "conf/SystemDS-config.xml", "new_path": null, "diff": "-<!--\n- ********************************************************************\n- *\n- * Copyright 2019 Graz University of Technology\n- *\n- * Licensed under the Apache License, Version 2.0 (the \"License\"...
Java
Apache License 2.0
apache/systemds
[MINOR] Remove non-default systemds-config from conf directory
49,720
18.12.2019 13:24:52
-3,600
b825b3126e873d12feac4d49ecc39aaac72c7911
Fix cTable error on writing at (0,1)
[ { "change_type": "MODIFY", "old_path": "scripts/builtin/mice_lm.dml", "new_path": "scripts/builtin/mice_lm.dml", "diff": "@@ -62,20 +62,19 @@ m_mice_lm = function(Matrix[Double] X, Integer iter = 3, Integer complete = 3)\n{\nMask_Filled = Mask;\n- parfor(i in 1:col)\n+ for(i in 1:col)\n{\n# construc...
Java
Apache License 2.0
apache/systemds
[SYSTEMDS-189] Fix cTable error on writing at (0,1)
49,738
19.12.2019 21:36:24
-3,600
d7aa404037a60d85dd23314c198a5cb43c36aa91
Fix corrupted xml license header main config template This patch fixes invalid '--' characters in the license header of our main systemds-config template, which was introduced with commit
[ { "change_type": "MODIFY", "old_path": "conf/SystemDS-config.xml.template", "new_path": "conf/SystemDS-config.xml.template", "diff": "-<!---------------------------------------------------------------\n+<!--\n+ * Modifications Copyright 2019 Graz University of Technology\n*\n- * Copyright 2019 Graz ...
Java
Apache License 2.0
apache/systemds
[SYSTEMDS-31] Fix corrupted xml license header main config template This patch fixes invalid '--' characters in the license header of our main systemds-config template, which was introduced with commit ceaa6ea664589104bb4e5fbee829bbcafac8458d.
49,720
22.12.2019 22:48:27
-3,600
e3daa283d655342e3d119d3c20a7c62d19474912
[Minor] Fix function description
[ { "change_type": "MODIFY", "old_path": "scripts/builtin/mice_lm.dml", "new_path": "scripts/builtin/mice_lm.dml", "diff": "# 1. The data is continous/numerical\n# 2. The missing values are denoted by zeros\n-# Builtin function Implements binary-class SVM with squared slack variables\n+# Builtin funct...
Java
Apache License 2.0
apache/systemds
[Minor] Fix function description
49,689
07.01.2020 00:49:31
-3,600
0f3cbe827f572021df8e4d09676294853509efd6
Lineage caching transpose operation. This patch includes changes to save r' results into lineage cache
[ { "change_type": "MODIFY", "old_path": "src/main/java/org/tugraz/sysds/runtime/lineage/LineageCache.java", "new_path": "src/main/java/org/tugraz/sysds/runtime/lineage/LineageCache.java", "diff": "@@ -186,7 +186,8 @@ public class LineageCache {\n|| (inst.getOpcode().equalsIgnoreCase(\"*\") &&\ninst i...
Java
Apache License 2.0
apache/systemds
Lineage caching transpose operation. This patch includes changes to save r' results into lineage cache
49,719
16.01.2020 15:57:42
28,800
cac53a97d087541c80c0aa9fdc25b7c8b267b25e
[MINOR] Upgrade log4j from 1.2.15 to 2.13.0 Official support for 1.2.x ended in 2015. And 1.2.15 has public vulnerabilities. Hence, we want to upgrade.
[ { "change_type": "MODIFY", "old_path": "pom.xml", "new_path": "pom.xml", "diff": "<version>3.4.1</version>\n</dependency>\n- <dependency>\n- <groupId>log4j</groupId>\n- <artifactId>log4j</artifactId>\n- <version>1.2.15</version>\n- <exclusions>\n- <exclusion>\n- <groupId>com.sun.jmx</groupId>\n- <ar...
Java
Apache License 2.0
apache/systemds
[MINOR] Upgrade log4j from 1.2.15 to 2.13.0 Official support for 1.2.x ended in 2015. And 1.2.15 has public vulnerabilities. Hence, we want to upgrade.
49,738
18.01.2020 17:00:54
-3,600
08679376066c62fd2f41b783d4a4384d9d5abb38
Fix travis CI integration (enabled ~1000 tests)
[ { "change_type": "MODIFY", "old_path": "pom.xml", "new_path": "pom.xml", "diff": "</plugin>\n- <!-- Currently, all tests are integration tests. -->\n- <plugin>\n+ <plugin> <!-- unit tests -->\n<groupId>org.apache.maven.plugins</groupId>\n<artifactId>maven-surefire-plugin</artifactId>\n<version>2.18<...
Java
Apache License 2.0
apache/systemds
[SYSTEMDS-15] Fix travis CI integration (enabled ~1000 tests)
49,738
18.01.2020 17:12:18
-3,600
abd083096f65152c6d559553ea6834c3a6b8b1d2
Fix travis CI integration (install R incl packages)
[ { "change_type": "MODIFY", "old_path": ".travis.yml", "new_path": ".travis.yml", "diff": "@@ -23,11 +23,11 @@ jdk:\n- openjdk8\naddons:\n-# apt:\n-# sources:\n-# - r-packages-trusty\n-# packages:\n-# - r-base-dev\n+ apt:\n+ sources:\n+ - r-packages-trusty\n+ packages:\n+ - r-base-dev\ncache:\napt: t...
Java
Apache License 2.0
apache/systemds
[SYSTEMDS-15] Fix travis CI integration (install R incl packages)
49,738
18.01.2020 17:25:39
-3,600
b46dcf046e2da81b1942255d5445c5e8b76110bb
Fix travis CI integration (restricted to component tests)
[ { "change_type": "MODIFY", "old_path": ".travis.yml", "new_path": ".travis.yml", "diff": "@@ -23,11 +23,11 @@ jdk:\n- openjdk8\naddons:\n- apt:\n- sources:\n- - r-packages-trusty\n- packages:\n- - r-base-dev\n+# apt:\n+# sources:\n+# - r-packages-trusty\n+# packages:\n+# - r-base-dev\ncache:\napt: t...
Java
Apache License 2.0
apache/systemds
[SYSTEMDS-15] Fix travis CI integration (restricted to component tests)
49,738
20.01.2020 10:27:23
-3,600
1a5cd082c9e019a86c224a5fba30754b04663eec
[MINOR] Fix missing support for INT32 handling in frame types
[ { "change_type": "MODIFY", "old_path": "src/main/java/org/tugraz/sysds/runtime/util/UtilFunctions.java", "new_path": "src/main/java/org/tugraz/sysds/runtime/util/UtilFunctions.java", "diff": "@@ -459,6 +459,7 @@ public class UtilFunctions\nswitch( vt ) {\ncase STRING: return in;\ncase BOOLEAN: retur...
Java
Apache License 2.0
apache/systemds
[MINOR] Fix missing support for INT32 handling in frame types
49,720
22.01.2020 10:36:07
-3,600
7c1f86992d93db82827e49193f49605cbe735741
Minor Fix in for loop iteration
[ { "change_type": "MODIFY", "old_path": "scripts/builtin/mice_lm.dml", "new_path": "scripts/builtin/mice_lm.dml", "diff": "@@ -102,7 +102,7 @@ m_mice_lm = function(Matrix[Double] X, Integer iter = 3, Integer complete = 3)\n# aggregating the results\nAgg_Matrix = Mask_Result[index:row, ]\n- for(d in 1...
Java
Apache License 2.0
apache/systemds
Minor Fix in for loop iteration
49,720
22.01.2020 13:58:21
-3,600
e1ec0b0a8daf0677c15240f6cd4ff2011bf7db5b
[Minor Fix]: Fix DetectSchema sample size
[ { "change_type": "MODIFY", "old_path": "src/main/java/org/tugraz/sysds/runtime/matrix/data/FrameBlock.java", "new_path": "src/main/java/org/tugraz/sysds/runtime/matrix/data/FrameBlock.java", "diff": "@@ -1781,11 +1781,7 @@ public class FrameBlock implements Writable, CacheBlock, Externalizable\nint ...
Java
Apache License 2.0
apache/systemds
[Minor Fix]: Fix DetectSchema sample size
49,716
13.12.2019 19:01:32
-3,600
a753bcc42d1e834f794ab582de43ae9974dd5edc
Hidden Markov Models for Missing Value Imputation Closes
[ { "change_type": "MODIFY", "old_path": "docs/Tasks.txt", "new_path": "docs/Tasks.txt", "diff": "@@ -171,5 +171,8 @@ SYSTEMDS-230 Lineage Integration\n* 231 Use lineage in buffer pool\n* 232 Lineage of generated operators\n+ SYSTEMDS-240 Student Projects\n+ * 241 Hidden Markov Models for Missing Valu...
Java
Apache License 2.0
apache/systemds
[SYSTEMDS-241] Hidden Markov Models for Missing Value Imputation Closes #74
49,730
25.01.2020 15:02:54
-3,600
fc7ac56c6f2ccc70ca1b6a7db42b15dd27e4b1c2
Initial slice finding implementation Closes
[ { "change_type": "ADD", "old_path": null, "new_path": "scripts/staging/slicing/base/node.py", "diff": "+#-------------------------------------------------------------\n+#\n+# Copyright 2020 Graz University of Technology\n+#\n+# Licensed under the Apache License, Version 2.0 (the \"License\");\n+# yo...
Java
Apache License 2.0
apache/systemds
[SYSTEMDS-251] Initial slice finding implementation Closes #71.
49,693
25.01.2020 15:16:36
-3,600
2536e36e8c725a169a3278dff006871622cf9060
Fix codegen outer template compilation codegen fixes: * opening condition on outer() * merge condition to allow row vectors (fixes RMSE test case (OuterProdTmplTest #10)) Closes
[ { "change_type": "MODIFY", "old_path": "src/main/java/org/tugraz/sysds/hops/codegen/template/TemplateOuterProduct.java", "new_path": "src/main/java/org/tugraz/sysds/hops/codegen/template/TemplateOuterProduct.java", "diff": "@@ -57,8 +57,10 @@ public class TemplateOuterProduct extends TemplateBase {\...
Java
Apache License 2.0
apache/systemds
[SYSTEMDS-203] Fix codegen outer template compilation codegen fixes: * opening condition on outer() * merge condition to allow row vectors (fixes RMSE test case (OuterProdTmplTest #10)) Closes #77.
49,720
25.01.2020 16:19:18
-3,600
0e549de1ae0c6621d99d728fe725b255ab916ef4
New intersect builtin function (set intersection) Closes
[ { "change_type": "ADD", "old_path": null, "new_path": "scripts/builtin/intersect.dml", "diff": "+#-------------------------------------------------------------\n+#\n+# Copyright 2020 Graz University of Technology\n+#\n+# Licensed to the Apache Software Foundation (ASF) under one\n+# or more contribu...
Java
Apache License 2.0
apache/systemds
[SYSTEMDS-196] New intersect builtin function (set intersection) Closes #85.
49,738
25.01.2020 18:22:52
-3,600
fa897a13352319a48744cea3bf326af6f2043bcd
New rewrite for eliminating unnecessary rmEmpty ops This patch adds a new rewrite that eliminates unneccessary removeEmpty operations in expressions like nrow(removeEmpty(A)), which can be obtained via sum(A!=0) and thus, nnz(A). This occurs for example, in the new intersect function where nrow is used for discovering robust inclusion dependencies.
[ { "change_type": "MODIFY", "old_path": "docs/Tasks.txt", "new_path": "docs/Tasks.txt", "diff": "@@ -146,11 +146,14 @@ SYSTEMDS-190 New Builtin Functions III\n* 191 Builtin function multi logreg OK\n* 192 Extended cmdline interface -b for calling builtin functions\n* 193 New outlierBySds builtin func...
Java
Apache License 2.0
apache/systemds
[SYSTEMDS-196] New rewrite for eliminating unnecessary rmEmpty ops This patch adds a new rewrite that eliminates unneccessary removeEmpty operations in expressions like nrow(removeEmpty(A)), which can be obtained via sum(A!=0) and thus, nnz(A). This occurs for example, in the new intersect function where nrow is used for discovering robust inclusion dependencies.
49,738
25.01.2020 18:26:04
-3,600
acc21dd0c7ea418b94637edb7a666022ece19fb7
Fix rewrite simplify sequence of binary comparisons This patch fixes an issue where (A!=0)!=0 was rewritten to A==0, although it should simply drop the redundant comparison: A!=0, which created incorrect results.
[ { "change_type": "MODIFY", "old_path": "src/main/java/org/tugraz/sysds/hops/rewrite/RewriteAlgebraicSimplificationStatic.java", "new_path": "src/main/java/org/tugraz/sysds/hops/rewrite/RewriteAlgebraicSimplificationStatic.java", "diff": "@@ -1848,19 +1848,23 @@ public class RewriteAlgebraicSimplific...
Java
Apache License 2.0
apache/systemds
[SYSTEMDS-204] Fix rewrite simplify sequence of binary comparisons This patch fixes an issue where (A!=0)!=0 was rewritten to A==0, although it should simply drop the redundant comparison: A!=0, which created incorrect results.
49,689
25.01.2020 19:10:09
-3,600
b9ed9cce9a939e57d7daaf3d979f1508396a48bc
Lineage cache and reuse of function results Closes
[ { "change_type": "MODIFY", "old_path": "src/main/java/org/tugraz/sysds/runtime/instructions/cp/FunctionCallCPInstruction.java", "new_path": "src/main/java/org/tugraz/sysds/runtime/instructions/cp/FunctionCallCPInstruction.java", "diff": "@@ -28,16 +28,24 @@ import org.tugraz.sysds.lops.Lop;\nimport ...
Java
Apache License 2.0
apache/systemds
[SYSTEMDS-233] Lineage cache and reuse of function results Closes #84.
49,693
25.01.2020 20:21:55
-3,600
730f5df8dc2f5203dbb898a78d600d74c5405f6e
[BUGFIX] when reading a DML script from HDFS, a try block closed the Filesystem object before reading the script completed
[ { "change_type": "MODIFY", "old_path": "src/main/java/org/tugraz/sysds/api/DMLScript.java", "new_path": "src/main/java/org/tugraz/sysds/api/DMLScript.java", "diff": "@@ -114,6 +114,8 @@ public class DMLScript\npublic static String _uuid = IDHandler.createDistributedUniqueID();\nprivate static final ...
Java
Apache License 2.0
apache/systemds
[BUGFIX] when reading a DML script from HDFS, a try block closed the Filesystem object before reading the script completed
49,738
26.01.2020 00:24:54
-3,600
08ff72c2d827251b0c1337008b3e12def460a8c9
[MINOR] Fix correction handling inconsistencies (spark, invalid types)
[ { "change_type": "MODIFY", "old_path": "src/main/java/org/tugraz/sysds/runtime/matrix/data/OperationsOnMatrixValues.java", "new_path": "src/main/java/org/tugraz/sysds/runtime/matrix/data/OperationsOnMatrixValues.java", "diff": "@@ -103,12 +103,11 @@ public class OperationsOnMatrixValues\n}\npublic s...
Java
Apache License 2.0
apache/systemds
[MINOR] Fix correction handling inconsistencies (spark, invalid types)
49,738
26.01.2020 13:07:00
-3,600
7c18f560fea0c88225fd613bcb340304cb02eac6
Fix robustness of federated instruction replacement This patch fixes issues with the federated instruction replacement which assumes matrix types and thus fails for frames and lists.
[ { "change_type": "MODIFY", "old_path": "src/main/java/org/tugraz/sysds/runtime/instructions/fed/FEDInstructionUtils.java", "new_path": "src/main/java/org/tugraz/sysds/runtime/instructions/fed/FEDInstructionUtils.java", "diff": "@@ -31,6 +31,7 @@ public class FEDInstructionUtils {\npublic static Inst...
Java
Apache License 2.0
apache/systemds
[SYSTEMDS-223] Fix robustness of federated instruction replacement This patch fixes issues with the federated instruction replacement which assumes matrix types and thus fails for frames and lists.
49,738
26.01.2020 13:12:41
-3,600
afa6862b2e71bf3266173a00ab0220b171c5ad95
Fix test conflict w/ dml-bodied pnmf builtin function This patch just temporarily fixes the existing tests, but down the road we should allow that user-defined functions take presedence over dml-bodied builtin functions.
[ { "change_type": "MODIFY", "old_path": "docs/Tasks.txt", "new_path": "docs/Tasks.txt", "diff": "@@ -155,6 +155,7 @@ SYSTEMDS-200 Various Fixes\n* 202 Fix rewrite split DAG multiple removeEmpty (pending op) OK\n* 203 Fix codegen outer compilation (MV operations) OK\n* 204 Fix rewrite simplify sequenc...
Java
Apache License 2.0
apache/systemds
[SYSTEMDS-185] Fix test conflict w/ dml-bodied pnmf builtin function This patch just temporarily fixes the existing tests, but down the road we should allow that user-defined functions take presedence over dml-bodied builtin functions.
49,738
26.01.2020 13:21:38
-3,600
fdf44ae79e485d2c7ff523a83498f24ddd32acd1
[SYSTEMDS-223,233] Fix invalid input handling federated/lineage
[ { "change_type": "MODIFY", "old_path": "src/main/java/org/tugraz/sysds/runtime/controlprogram/context/ExecutionContext.java", "new_path": "src/main/java/org/tugraz/sysds/runtime/controlprogram/context/ExecutionContext.java", "diff": "@@ -186,6 +186,10 @@ public class ExecutionContext {\n_variables.p...
Java
Apache License 2.0
apache/systemds
[SYSTEMDS-223,233] Fix invalid input handling federated/lineage
49,738
26.01.2020 19:59:58
-3,600
fd208ffe8e051e2992c0e944388a877e2f43a5ec
Fix corrupted rewrite binary comparison chains
[ { "change_type": "MODIFY", "old_path": "src/main/java/org/tugraz/sysds/hops/rewrite/RewriteAlgebraicSimplificationStatic.java", "new_path": "src/main/java/org/tugraz/sysds/hops/rewrite/RewriteAlgebraicSimplificationStatic.java", "diff": "@@ -1852,7 +1852,7 @@ public class RewriteAlgebraicSimplificat...
Java
Apache License 2.0
apache/systemds
[SYSTEMDS-204] Fix corrupted rewrite binary comparison chains
49,738
26.01.2020 20:02:25
-3,600
f7e5053fa1ddd442402717b8b66e30040dfd9e90
[MINOR] Fix kahan aggregation operators with separate corrections
[ { "change_type": "MODIFY", "old_path": "src/main/java/org/tugraz/sysds/runtime/functionobjects/KahanFunction.java", "new_path": "src/main/java/org/tugraz/sysds/runtime/functionobjects/KahanFunction.java", "diff": "@@ -44,4 +44,9 @@ public abstract class KahanFunction extends ValueFunction implements...
Java
Apache License 2.0
apache/systemds
[MINOR] Fix kahan aggregation operators with separate corrections
49,720
26.01.2020 20:25:32
-3,600
6589c93dad918f4fcacdb73d28ccd9aeb8af540d
Builtin function for functional dependency discovery Closes
[ { "change_type": "MODIFY", "old_path": "docs/Tasks.txt", "new_path": "docs/Tasks.txt", "diff": "@@ -148,7 +148,8 @@ SYSTEMDS-190 New Builtin Functions III\n* 193 New outlierBySds builtin function (delete row/cell)\n* 194 New outlierByIQR builtin function (delete row/cell)\n* 195 Builtin function mic...
Java
Apache License 2.0
apache/systemds
[SYSTEMDS-197] Builtin function for functional dependency discovery Closes #88.
49,689
30.01.2020 16:28:13
-3,600
06e5de34b65fd5752284980f3a5873317a075a71
Function results caching updates and bug fixes. This patch contains - 1. Refactoring of function results caching 2. Code to skip caching if function contains Rand/Sample 3. Few bug fixes.
[ { "change_type": "MODIFY", "old_path": "scripts/builtin/steplm.dml", "new_path": "scripts/builtin/steplm.dml", "diff": "@@ -69,6 +69,13 @@ return(Matrix[Double] C, Matrix[Double] S) {\ndir = \"forward\";\nthr = 0.001;\n+ Xtmp1 = rand(rows=100, cols=100, sparsity=1.0, seed=1);\n+ betatmp1 = rand(rows...
Java
Apache License 2.0
apache/systemds
Function results caching updates and bug fixes. This patch contains - 1. Refactoring of function results caching 2. Code to skip caching if function contains Rand/Sample 3. Few bug fixes.
49,689
31.01.2020 11:34:37
-3,600
d97863804a115d562224fa69a9f7b4b00c0562a5
Extends lineagecache statistics. Added entry for multilevel caching Fixed bugs in rewrite stats
[ { "change_type": "MODIFY", "old_path": "src/main/java/org/tugraz/sysds/runtime/instructions/cp/FunctionCallCPInstruction.java", "new_path": "src/main/java/org/tugraz/sysds/runtime/instructions/cp/FunctionCallCPInstruction.java", "diff": "@@ -39,6 +39,7 @@ import org.tugraz.sysds.runtime.instructions...
Java
Apache License 2.0
apache/systemds
Extends lineagecache statistics. - Added entry for multilevel caching - Fixed bugs in rewrite stats
49,706
28.01.2020 14:56:38
-3,600
b3f4d28d2ce823efe2bc12717fdb15396e6c2d74
[MINOR] Upgrading URL handling for initiating federated commands Closes
[ { "change_type": "MODIFY", "old_path": "src/main/java/org/tugraz/sysds/conf/DMLConfig.java", "new_path": "src/main/java/org/tugraz/sysds/conf/DMLConfig.java", "diff": "@@ -88,6 +88,8 @@ public class DMLConfig\npublic static final String PRINT_GPU_MEMORY_INFO = \"sysds.gpu.print.memoryInfo\";\npublic...
Java
Apache License 2.0
apache/systemds
[MINOR] Upgrading URL handling for initiating federated commands Closes #90
49,693
27.01.2020 12:55:17
-3,600
ce0ae2707ad5b021be8414e37f63218721517f42
[BUGFIX] two more try-block issues fixed
[ { "change_type": "MODIFY", "old_path": "src/main/java/org/tugraz/sysds/api/jmlc/Connection.java", "new_path": "src/main/java/org/tugraz/sysds/api/jmlc/Connection.java", "diff": "@@ -90,6 +90,7 @@ public class Connection implements Closeable\n{\nprivate final DMLConfig _dmlconf;\nprivate final Compil...
Java
Apache License 2.0
apache/systemds
[BUGFIX] two more try-block issues fixed
49,689
08.02.2020 20:38:24
-3,600
48faea45cc74289d6b2c4aa5d20d1a22d577a9ca
Initial code style eclipse template Closes
[ { "change_type": "ADD", "old_path": null, "new_path": "docs/CodeStyle_eclipse.xml", "diff": "+<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?>\n+<profiles version=\"16\">\n+<profile kind=\"CodeFormatterProfile\" name=\"SystemDS\" version=\"16\">\n+<setting id=\"org.eclipse.jdt.core.forma...
Java
Apache License 2.0
apache/systemds
[SYSTEMDS-156] Initial code style eclipse template Closes #79.
49,720
08.02.2020 21:31:14
-3,600
e2b903c67ed2c485bc5ad42618917730975c9e1f
New builtin function for outlier detection via std dev Outliers detection using standard deviation and repair using row deletion, mean and median imputation Closes
[ { "change_type": "ADD", "old_path": null, "new_path": "scripts/builtin/outlierBySd.dml", "diff": "+#-------------------------------------------------------------\n+#\n+# Copyright 2020 Graz University of Technology\n+#\n+# Licensed under the Apache License, Version 2.0 (the \"License\");\n+# you may...
Java
Apache License 2.0
apache/systemds
[SYSTEMDS-193] New builtin function for outlier detection via std dev Outliers detection using standard deviation and repair using row deletion, mean and median imputation Closes #89.
49,720
08.02.2020 21:55:46
-3,600
da30e27c549c758e30dc94fc8e9004bc60da38d2
New builtin function for outlier detection via IQR Outlier detection using IQR - Initial commit Closes
[ { "change_type": "ADD", "old_path": null, "new_path": "scripts/builtin/outlierByIQR.dml", "diff": "+#-------------------------------------------------------------\n+#\n+# Copyright 2020 Graz University of Technology\n+#\n+# Licensed under the Apache License, Version 2.0 (the \"License\");\n+# you ma...
Java
Apache License 2.0
apache/systemds
[SYSTEMDS-194] New builtin function for outlier detection via IQR Outlier detection using IQR - Initial commit Closes #91.
49,746
09.02.2020 21:34:26
-3,600
645d0ba563bac01172ae5b04f56d0fd43357fb91
New federated rbind and cbind operations Optimizes rbind and cbind to only append federated metadata for the result. Closes
[ { "change_type": "MODIFY", "old_path": "src/main/java/org/tugraz/sysds/runtime/controlprogram/federated/FederatedRange.java", "new_path": "src/main/java/org/tugraz/sysds/runtime/controlprogram/federated/FederatedRange.java", "diff": "@@ -34,6 +34,23 @@ public class FederatedRange implements Comparab...
Java
Apache License 2.0
apache/systemds
[SYSTEMDS-226] New federated rbind and cbind operations Optimizes rbind and cbind to only append federated metadata for the result. Closes #92.
49,745
14.02.2020 16:06:08
-3,600
c42c90be1c530ad9bdcc07162801e56d0faa59d3
[261] Stable Marriage Algorithm Closes
[ { "change_type": "MODIFY", "old_path": "docs/Tasks.txt", "new_path": "docs/Tasks.txt", "diff": "@@ -185,5 +185,8 @@ SYSTEMDS-240 GPU Backend Improvements\nSYSTEMDS-250 Large-Scale Slice Finding\n* 251 Initial data slicing implementation Python\n+SYSTEMDS-260 Algorithms\n+ * 261 Stable marriage algor...
Java
Apache License 2.0
apache/systemds
[261] Stable Marriage Algorithm Closes #99
49,738
14.02.2020 19:08:06
-3,600
c46c7389c9407d30131c9838828048afced798c9
[MINOR] Fix strict compilation errors (types, statements)
[ { "change_type": "MODIFY", "old_path": "src/main/java/org/tugraz/sysds/runtime/matrix/data/LibMatrixCUDA.java", "new_path": "src/main/java/org/tugraz/sysds/runtime/matrix/data/LibMatrixCUDA.java", "diff": "@@ -2278,7 +2278,7 @@ public class LibMatrixCUDA {\n}\nelse\nreturn 0.0;\n- };\n+ }\n/**\n* Cu...
Java
Apache License 2.0
apache/systemds
[MINOR] Fix strict compilation errors (types, statements)
49,738
14.02.2020 22:04:34
-3,600
149da7b6a49c2879e0f1b6a197a1af543879ac94
Cleanup unnecessary reorg hop/lop type indirections
[ { "change_type": "MODIFY", "old_path": "src/main/java/org/tugraz/sysds/common/Types.java", "new_path": "src/main/java/org/tugraz/sysds/common/Types.java", "diff": "@@ -183,10 +183,58 @@ public class Types\n}\n}\n+ // Operations that require 3 operands\n+ public enum OpOp3 {\n+ QUANTILE, INTERQUANTIL...
Java
Apache License 2.0
apache/systemds
[SYSTEMDS-12] Cleanup unnecessary reorg hop/lop type indirections
49,720
15.02.2020 22:00:10
-3,600
8df07bfe9eaa7320606c02579b44471f8ede57f8
Improved functional dependency discovery (discoverFD) 1. Included Mask and threshold as input parameters 2. Output Matrix FD contains the scores for FDs Closes
[ { "change_type": "MODIFY", "old_path": "scripts/builtin/discoverFD.dml", "new_path": "scripts/builtin/discoverFD.dml", "diff": "# ---------------------------------------------------------------------------------------------\n# NAME TYPE DEFAULT MEANING\n# --------------------------------------------...
Java
Apache License 2.0
apache/systemds
[SYSTEMDS-197] Improved functional dependency discovery (discoverFD) 1. Included Mask and threshold as input parameters 2. Output Matrix FD contains the scores for FDs Closes #95.
49,750
15.02.2020 22:30:05
-3,600
f5394e9684a0757a7ae47992200efbc697f38a37
Data augmentation tool for data cleaning primitives DIA project data augmentation for data cleaning (outliers, missing values, typos, swapped columns) Closes
[ { "change_type": "MODIFY", "old_path": "docs/Tasks.txt", "new_path": "docs/Tasks.txt", "diff": "@@ -189,8 +189,9 @@ SYSTEMDS-240 GPU Backend Improvements\nSYSTEMDS-250 Large-Scale Slice Finding\n* 251 Initial data slicing implementation Python\n-SYSTEMDS-260 Algorithms\n+SYSTEMDS-260 Misc Tools\n* 2...
Java
Apache License 2.0
apache/systemds
[SYSTEMDS-262] Data augmentation tool for data cleaning primitives DIA project data augmentation for data cleaning (outliers, missing values, typos, swapped columns) Closes #101.
49,689
07.02.2020 10:28:53
-3,600
e44e4129c61acc70be5b0c6981806316e6fccbc3
Extended multi-level lineage-based reuse (block-level) Closes
[ { "change_type": "MODIFY", "old_path": "docs/Tasks.txt", "new_path": "docs/Tasks.txt", "diff": "@@ -183,6 +183,7 @@ SYSTEMDS-230 Lineage Integration\n* 233 Lineage cache and reuse of function results OK\n* 234 Lineage tracing for spark instructions OK\n* 235 Lineage tracing for remote-spark parfor O...
Java
Apache License 2.0
apache/systemds
[SYSTEMDS-236] Extended multi-level lineage-based reuse (block-level) Closes #102.
49,706
16.02.2020 17:24:49
-3,600
8cba08d41662177defec12342244a513ffb5b733
Improved Federated Environment Startup Upgrade the startup of the Federated Environment Support for Default Port Relative and static file path URL for Federated Worker Minor Startup cleanup in Federated Worker No need for extra file argument to start a federated worker Closes
[ { "change_type": "MODIFY", "old_path": "docs/Tasks.txt", "new_path": "docs/Tasks.txt", "diff": "@@ -176,6 +176,7 @@ SYSTEMDS-220 Federated Tensors and Instructions\n* 224 Federated transform functionality\n* 225 Federated elementwise operations\n* 226 Federated rbind and cbind OK\n+ * 227 Federated ...
Java
Apache License 2.0
apache/systemds
[SYSTEMDS-227] Improved Federated Environment Startup - Upgrade the startup of the Federated Environment - Support for Default Port - Relative and static file path URL for Federated Worker - Minor Startup cleanup in Federated Worker - No need for extra file argument to start a federated worker Closes #98.
49,730
16.02.2020 17:32:08
-3,600
2abddc1ce4ce851641f15c8d930a67338439c5a6
Extended slice finding for classification tasks Closes
[ { "change_type": "MODIFY", "old_path": "docs/Tasks.txt", "new_path": "docs/Tasks.txt", "diff": "@@ -152,6 +152,7 @@ SYSTEMDS-190 New Builtin Functions III\n* 195 Builtin function mice for nominal features\n* 196 Builtin function intersect (set intersection) OK\n* 197 Builtin function for functional ...
Java
Apache License 2.0
apache/systemds
[SYSTEMDS-198] Extended slice finding for classification tasks Closes #103.
49,738
16.02.2020 19:35:13
-3,600
b5aa876e0b74e75fb6c36ea771c424f7068d6592
Fix parfor ID handling (hidden statement block ID)
[ { "change_type": "MODIFY", "old_path": "src/main/java/org/tugraz/sysds/parser/ParForStatementBlock.java", "new_path": "src/main/java/org/tugraz/sysds/parser/ParForStatementBlock.java", "diff": "@@ -96,7 +96,7 @@ public class ParForStatementBlock extends ForStatementBlock\nprivate static HashMap<Stri...
Java
Apache License 2.0
apache/systemds
[SYSTEMDS-236] Fix parfor ID handling (hidden statement block ID)
49,738
16.02.2020 20:51:10
-3,600
c8c3d4181be0a91d6800b0862a85e3ca37f5d285
[MINOR] Various fixes and cleanups of recent changes, part 2 1) Fixed corrupted print of stop/parse issues to stderr 2) Fixed missing handling of tensors in federated instruction wrapping
[ { "change_type": "MODIFY", "old_path": "src/main/java/org/tugraz/sysds/api/DMLScript.java", "new_path": "src/main/java/org/tugraz/sysds/api/DMLScript.java", "diff": "@@ -162,7 +162,7 @@ public class DMLScript\n}\ncatch (ParseException | DMLScriptException e) {\n// In case of DMLScriptException, simp...
Java
Apache License 2.0
apache/systemds
[MINOR] Various fixes and cleanups of recent changes, part 2 1) Fixed corrupted print of stop/parse issues to stderr 2) Fixed missing handling of tensors in federated instruction wrapping
49,720
24.02.2020 16:33:45
-3,600
db2dbeb8339a7fb2f6771cda00671b1e062382a6
Predict builtin for Multinomial Logistic Regression Builtin function for Multinominal Logistic Regression Function test verifying integration Closes
[ { "change_type": "MODIFY", "old_path": "docs/Tasks.txt", "new_path": "docs/Tasks.txt", "diff": "@@ -153,6 +153,7 @@ SYSTEMDS-190 New Builtin Functions III\n* 196 Builtin function intersect (set intersection) OK\n* 197 Builtin function for functional dependency discovery OK\n* 198 Extended slice find...
Java
Apache License 2.0
apache/systemds
[SYSTEMDS-199] Predict builtin for Multinomial Logistic Regression - Builtin function for Multinominal Logistic Regression - Function test verifying integration Closes #107
49,690
21.02.2020 21:58:44
-3,600
6c6506be8ce92a6646be73f6ce0319f00989e2e4
AWS deploy script Added scripts for deployment of SystemDS on the Amazon EMR Located in /scripts/aws/* Closes
[ { "change_type": "MODIFY", "old_path": "docs/Tasks.txt", "new_path": "docs/Tasks.txt", "diff": "@@ -32,6 +32,7 @@ SYSTEMDS-30 Builtin and Packaging\n* 33 Cleanup hadoop dependency for local runs\n* 34 Wrapper blocks for sequence files\n* 35 Replace unnecessary dependencies w/ custom\n+ * 36 Shell sc...
Java
Apache License 2.0
apache/systemds
[SYSTEMDS-36] AWS deploy script - Added scripts for deployment of SystemDS on the Amazon EMR - Located in /scripts/aws/* Closes #112
49,706
01.03.2020 15:55:24
-3,600
857e45c61e965ac6e59b1e256174d62a216110c0
[MINOR] Contributing file Added a Contributing file specifying the basic guidelines for contribution to SystemDS Added CodeStyle Added licenses Closes
[ { "change_type": "ADD", "old_path": null, "new_path": "CONTRIBUTING.md", "diff": "+<!--\n+{% comment %}\n+Copyright 2020 Graz University of Technology\n+\n+Licensed to the Apache Software Foundation (ASF) under one or more\n+contributor license agreements. See the NOTICE file distributed with\n+this...
Java
Apache License 2.0
apache/systemds
[MINOR] Contributing file Added a Contributing file specifying the basic guidelines for contribution to SystemDS - Added CodeStyle - Added licenses Closes #113
49,689
01.03.2020 20:18:19
-3,600
f373cdf13545bcdeb90809f38d3da47743dd42fa
Lineage support for codegen (fused operators) Closes
[ { "change_type": "MODIFY", "old_path": "docs/Tasks.txt", "new_path": "docs/Tasks.txt", "diff": "@@ -184,7 +184,7 @@ SYSTEMDS-220 Federated Tensors and Instructions\nSYSTEMDS-230 Lineage Integration\n* 231 Use lineage in buffer pool\n- * 232 Lineage of code generated operators\n+ * 232 Lineage of cod...
Java
Apache License 2.0
apache/systemds
[SYSTEMDS-232] Lineage support for codegen (fused operators) Closes #109.
49,730
01.03.2020 21:49:05
-3,600
f9ba1dbddf1cf2fa3ff939ebf104152df7555e90
Alternative slice enumeration algorithm (union) Closes
[ { "change_type": "MODIFY", "old_path": "docs/Tasks.txt", "new_path": "docs/Tasks.txt", "diff": "@@ -193,8 +193,9 @@ SYSTEMDS-230 Lineage Integration\nSYSTEMDS-240 GPU Backend Improvements\n* 241 Dense GPU cumulative aggregates\n-SYSTEMDS-250 Large-Scale Slice Finding\n- * 251 Initial data slicing im...
Java
Apache License 2.0
apache/systemds
[SYSTEMDS-251] Alternative slice enumeration algorithm (union) Closes #105.
49,714
01.03.2020 22:26:31
-3,600
e2b985807c485b3c3f1b63e2926a2f5478441641
Fix named arguments in MNIST LeNet example script Closes
[ { "change_type": "MODIFY", "old_path": "scripts/nn/examples/mnist_lenet.dml", "new_path": "scripts/nn/examples/mnist_lenet.dml", "diff": "@@ -118,13 +118,13 @@ train = function(matrix[double] X, matrix[double] Y,\nstride, stride, pad, pad)\noutr1 = relu::forward(outc1)\n[outp1, Houtp1, Woutp1] = max...
Java
Apache License 2.0
apache/systemds
[SYSTEMML-2533] Fix named arguments in MNIST LeNet example script Closes #866.
49,693
03.03.2020 13:39:02
-3,600
64ed73deefeb38bb3e0fb4759bab7d8f31095ce7
[BUGFIX] fix for the latest codegen bugfix (cleanup while squash-merging changed the behavior)
[ { "change_type": "MODIFY", "old_path": "src/main/java/org/tugraz/sysds/hops/codegen/template/TemplateOuterProduct.java", "new_path": "src/main/java/org/tugraz/sysds/hops/codegen/template/TemplateOuterProduct.java", "diff": "@@ -134,9 +134,14 @@ public class TemplateOuterProduct extends TemplateBase ...
Java
Apache License 2.0
apache/systemds
[BUGFIX] fix for the latest codegen bugfix (cleanup while squash-merging changed the behavior)
49,689
05.03.2020 23:37:44
-3,600
c01a98c99f1d878eb25f24b044de0ae1452cc402
Reuse of spoof operator result This patch includes changes in LineageCache to enable reuse of spoof instruction results.
[ { "change_type": "MODIFY", "old_path": "src/main/java/org/tugraz/sysds/runtime/lineage/LineageCache.java", "new_path": "src/main/java/org/tugraz/sysds/runtime/lineage/LineageCache.java", "diff": "@@ -316,7 +316,8 @@ public class LineageCache {\n|| inst.getOpcode().equalsIgnoreCase(\"groupedagg\")\n|...
Java
Apache License 2.0
apache/systemds
Reuse of spoof operator result This patch includes changes in LineageCache to enable reuse of spoof instruction results.
49,738
08.03.2020 19:29:53
-3,600
a6983be0c0216ec53b9234281e4ab388cc6d355a
[MINOR] Fix various warnings (unnecessary casts/imports, hidden fields)
[ { "change_type": "MODIFY", "old_path": "src/main/java/org/tugraz/sysds/runtime/compress/ColGroupOffset.java", "new_path": "src/main/java/org/tugraz/sysds/runtime/compress/ColGroupOffset.java", "diff": "@@ -472,12 +472,12 @@ public abstract class ColGroupOffset extends ColGroupValue {\n}\nprotected c...
Java
Apache License 2.0
apache/systemds
[MINOR] Fix various warnings (unnecessary casts/imports, hidden fields)
49,689
09.03.2020 22:38:43
-3,600
851506174f1e62feecfca36ab5a73c743a494df8
[MINOR] Fix bug in function result reuse code. bug:
[ { "change_type": "MODIFY", "old_path": "src/main/java/org/tugraz/sysds/runtime/lineage/LineageCache.java", "new_path": "src/main/java/org/tugraz/sysds/runtime/lineage/LineageCache.java", "diff": "@@ -218,6 +218,8 @@ public class LineageCache {\nString boundVarName = outputs.get(i);\nLineageItem boun...
Java
Apache License 2.0
apache/systemds
[MINOR] Fix bug in function result reuse code. :bug:
49,689
12.03.2020 14:32:57
-3,600
66d0f549f3a27574210e0e2313e9f788b0cf7cdf
Extend Lineage support for codegen :art: This patch supports few more hop types for HOP DAG to Lineage DAG conversion.
[ { "change_type": "MODIFY", "old_path": "src/main/java/org/tugraz/sysds/hops/Hop.java", "new_path": "src/main/java/org/tugraz/sysds/hops/Hop.java", "diff": "@@ -1184,7 +1184,7 @@ public abstract class Hop implements ParseInfo\nHopsOpOp1LopsU.put(OpOp1.CAST_AS_FRAME, org.tugraz.sysds.lops.Unary.Operat...
Java
Apache License 2.0
apache/systemds
[SYSTEMDS-232] Extend Lineage support for codegen :art: - This patch supports few more hop types for HOP DAG to Lineage DAG conversion.
49,738
16.03.2020 22:08:44
-3,600
13f25073c23d3e089f5b1af16375b742f42bb6dd
[MINOR] Resolve warnings w/ strict compilation flags
[ { "change_type": "MODIFY", "old_path": "src/main/java/org/tugraz/sysds/runtime/instructions/fed/AggregateBinaryFEDInstruction.java", "new_path": "src/main/java/org/tugraz/sysds/runtime/instructions/fed/AggregateBinaryFEDInstruction.java", "diff": "@@ -98,7 +98,7 @@ public class AggregateBinaryFEDIns...
Java
Apache License 2.0
apache/systemds
[MINOR] Resolve warnings w/ strict compilation flags
49,706
17.03.2020 13:28:03
-3,600
19845c4a373d9c8a9a41c7e46d0c06cd89093e39
[MINOR] Fix R install in actions Federated function Test not thread safe annotation
[ { "change_type": "MODIFY", "old_path": ".github/workflows/applicationTests.yml", "new_path": ".github/workflows/applicationTests.yml", "diff": "@@ -30,7 +30,9 @@ jobs:\nrun: mvn clean compile test-compile\n- name: install R\n- run: sudo apt -y install r-base\n+ run: |\n+ sudo apt-get update\n+ sudo ...
Java
Apache License 2.0
apache/systemds
[MINOR] Fix R install in actions - Federated function Test not thread safe annotation
49,738
17.03.2020 14:57:10
-3,600
fe0cbb6f8a86d64646f24a5c921c6db77158c48c
Fix rewrite ctable bypass (rewiring, direction)
[ { "change_type": "MODIFY", "old_path": "src/main/java/org/tugraz/sysds/hops/UnaryOp.java", "new_path": "src/main/java/org/tugraz/sysds/hops/UnaryOp.java", "diff": "@@ -62,7 +62,7 @@ public class UnaryOp extends MultiThreadedHop\npublic UnaryOp(String l, DataType dt, ValueType vt, OpOp1 o, Hop inp) {...
Java
Apache License 2.0
apache/systemds
[SYSTEMDS-281] Fix rewrite ctable bypass (rewiring, direction)
49,738
17.03.2020 15:14:39
-3,600
bf19244c909ae8354bc8b3da0985eaf448aa5f0c
[MINOR] Fix qpick instruction (common layout for fed conversion)
[ { "change_type": "MODIFY", "old_path": "src/main/java/org/tugraz/sysds/runtime/instructions/cp/QuantilePickCPInstruction.java", "new_path": "src/main/java/org/tugraz/sysds/runtime/instructions/cp/QuantilePickCPInstruction.java", "diff": "@@ -65,7 +65,7 @@ public class QuantilePickCPInstruction exten...
Java
Apache License 2.0
apache/systemds
[MINOR] Fix qpick instruction (common layout for fed conversion)
49,738
17.03.2020 21:11:08
-3,600
3f3f4973d825d49464b05ca5d3160ebb2e8b542c
[MINOR] Increased error threshold for GLM, binomial two-column.cauchit
[ { "change_type": "MODIFY", "old_path": "src/test/java/org/tugraz/sysds/test/applications/GLMTest.java", "new_path": "src/test/java/org/tugraz/sysds/test/applications/GLMTest.java", "diff": "@@ -340,7 +340,8 @@ public class GLMTest extends AutomatedTestBase\nHashMap<CellIndex, Double> wR = readRMatri...
Java
Apache License 2.0
apache/systemds
[MINOR] Increased error threshold for GLM, binomial two-column.cauchit
49,738
17.03.2020 21:24:49
-3,600
cde2196890a95148ad7c3d556b14f2127ce335ba
[MINOR] Remove R plotrix test dependency (for std error)
[ { "change_type": "MODIFY", "old_path": "src/test/scripts/applications/descriptivestats/Scale.R", "new_path": "src/test/scripts/applications/descriptivestats/Scale.R", "diff": "args <- commandArgs(TRUE)\noptions(digits=22)\n-library(\"plotrix\");\nlibrary(\"psych\")\nlibrary(\"moments\")\n-#library(\...
Java
Apache License 2.0
apache/systemds
[MINOR] Remove R plotrix test dependency (for std error)
49,706
17.03.2020 21:30:54
-3,600
22cfef4a78b3812e28807173e7367dc509bd4140
[MINOR] Revert uncommented workflow action
[ { "change_type": "MODIFY", "old_path": ".github/workflows/applicationTests.yml", "new_path": ".github/workflows/applicationTests.yml", "diff": "-# name: Application Test\n-\n-# on:\n-# push:\n-# branches:\n-# - master\n-# pull_request:\n-# branches:\n-# - master\n-\n-# jobs:\n-# applicationsTests:\n...
Java
Apache License 2.0
apache/systemds
[MINOR] Revert uncommented workflow action
49,738
17.03.2020 22:26:22
-3,600
474cf08253b30ab52f99cb33cb4533c82cfab06c
[MINOR] Fix additional tests (R packages, GLM eps parameter) * GLM eps increase for right parameterized test * Remove partially unavailable R package dependencies and fix install dependency script (typos r packages)
[ { "change_type": "MODIFY", "old_path": "src/test/java/org/tugraz/sysds/test/applications/GLMTest.java", "new_path": "src/test/java/org/tugraz/sysds/test/applications/GLMTest.java", "diff": "@@ -340,9 +340,7 @@ public class GLMTest extends AutomatedTestBase\nHashMap<CellIndex, Double> wR = readRMatri...
Java
Apache License 2.0
apache/systemds
[MINOR] Fix additional tests (R packages, GLM eps parameter) * GLM eps increase for right parameterized test * Remove partially unavailable R package dependencies and fix install dependency script (typos r packages)
49,738
17.03.2020 23:39:46
-3,600
782d58a95a20263e039618a7b989a6212be9e242
[MINOR] Fix additional tests (R packages, case-sensitive names), part II
[ { "change_type": "MODIFY", "old_path": "src/main/java/org/tugraz/sysds/runtime/compress/utils/Py4jConverterUtils.java", "new_path": "src/main/java/org/tugraz/sysds/runtime/compress/utils/Py4jConverterUtils.java", "diff": "@@ -94,6 +94,8 @@ public class Py4jConverterUtils {\nfor (int i = 0; i < rlen ...
Java
Apache License 2.0
apache/systemds
[MINOR] Fix additional tests (R packages, case-sensitive names), part II
49,693
10.07.2019 20:00:25
-7,200
571b12a2f66273366c12998951592d9fc61d8b58
Follow-up to improve BLAS loading and building JNI helpers with CMake
[ { "change_type": "MODIFY", "old_path": ".gitignore", "new_path": ".gitignore", "diff": "@@ -90,3 +90,11 @@ Gemfile.lock\n**/metastore_db\nderby.log\n/systemds/\n+\n+# native cpp code build artifacts\n+src/main/cpp/build\n+src/main/cpp/bin\n+src/main/cpp/lib\n+\n+# legacy dml\n+*.dmlt\n\\ No newline ...
Java
Apache License 2.0
apache/systemds
[SYSTEMDS-151] Follow-up to improve BLAS loading and building JNI helpers with CMake
49,689
14.10.2019 11:57:23
-7,200
729b293cd725dd2f08c8a61887a1c50cca92148f
Unmark loop dependent operations for lineage caching Closes
[ { "change_type": "MODIFY", "old_path": "docs/Tasks.txt", "new_path": "docs/Tasks.txt", "diff": "@@ -190,6 +190,7 @@ SYSTEMDS-230 Lineage Integration\n* 234 Lineage tracing for spark instructions OK\n* 235 Lineage tracing for remote-spark parfor OK\n* 236 Extended multi-level lineage cache for statem...
Java
Apache License 2.0
apache/systemds
[SYSTEMDS-237] Unmark loop dependent operations for lineage caching Closes #119
49,706
18.03.2020 17:47:59
-3,600
01aca93d2bb2a7f63b27c0fc31ae1af1180f3a98
[MINOR] Aggregate and binary tensor threadsafe
[ { "change_type": "MODIFY", "old_path": "pom.xml", "new_path": "pom.xml", "diff": "<threadCount>12</threadCount>\n<!-- 1C means the number of threads times 1 posible maximum forks for testing-->\n<forkCount>1C</forkCount>\n- <argLine>-Xms4g -Xmx6g</argLine>\n+ <argLine>-Xms4g -Xmx4g</argLine>\n<reuse...
Java
Apache License 2.0
apache/systemds
[MINOR] Aggregate and binary tensor threadsafe
49,720
18.03.2020 22:29:18
-3,600
5d9698605b65572325933e206b367e721187b499
Updating R version To resolve failures in builtin package.
[ { "change_type": "MODIFY", "old_path": ".github/workflows/functionsTests.yml", "new_path": ".github/workflows/functionsTests.yml", "diff": "@@ -66,8 +66,10 @@ jobs:\n- name: install R\nrun: |\n- sudo apt-get update\n- sudo apt-get -y install r-base\n+ sudo apt-key adv --keyserver keyserver.ubuntu.co...
Java
Apache License 2.0
apache/systemds
Updating R version To resolve failures in builtin package.
49,706
19.03.2020 15:23:26
-3,600
09848e9d76e96d0f6075f42b8d3940dc777ec1c1
[MINOR] Parametized the number of threads for spark local test in config Minor change enabling parametizing the number of threads used in spark instructions while testing. Altho it did not solve problems in some tests it does provide some extra setting for the system.
[ { "change_type": "MODIFY", "old_path": "src/main/java/org/tugraz/sysds/conf/DMLConfig.java", "new_path": "src/main/java/org/tugraz/sysds/conf/DMLConfig.java", "diff": "@@ -81,6 +81,7 @@ public class DMLConfig\npublic static final String SYNCHRONIZE_GPU = \"sysds.gpu.sync.postProcess\"; // boolean: w...
Java
Apache License 2.0
apache/systemds
[MINOR] Parametized the number of threads for spark local test in config Minor change enabling parametizing the number of threads used in spark instructions while testing. Altho it did not solve problems in some tests it does provide some extra setting for the system.
49,689
19.03.2020 19:00:24
-3,600
9321996435d3a61b5b6f0b8c20c13ce2b8545d1c
[SYSTEMDS-232]Fix lineage-codegen support for msvm
[ { "change_type": "MODIFY", "old_path": "src/main/java/org/tugraz/sysds/hops/codegen/SpoofCompiler.java", "new_path": "src/main/java/org/tugraz/sysds/hops/codegen/SpoofCompiler.java", "diff": "@@ -585,15 +585,16 @@ public class SpoofCompiler\nHashMap<Long, Pair<Hop[],CNodeTpl>> cplans, HashMap<Long, ...
Java
Apache License 2.0
apache/systemds
[SYSTEMDS-232]Fix lineage-codegen support for msvm
49,738
19.03.2020 20:20:45
-3,600
4cc95a6f2024fdef7267879fa8212d7ed43acd2a
[MINOR] Additional fixes functions tests (data-rand/tensor, codegen)
[ { "change_type": "MODIFY", "old_path": "src/test/java/org/tugraz/sysds/test/applications/ArimaTest.java", "new_path": "src/test/java/org/tugraz/sysds/test/applications/ArimaTest.java", "diff": "@@ -37,6 +37,7 @@ import org.tugraz.sysds.test.AutomatedTestBase;\nimport org.tugraz.sysds.test.TestUtils;...
Java
Apache License 2.0
apache/systemds
[MINOR] Additional fixes functions tests (data-rand/tensor, codegen)
49,738
21.03.2020 23:50:08
-3,600
5b8298b6287f53e999b4465ddf6ff601be1775d1
Cleanup intersect builtin and related tests This patch removes unnecessary operations from the recently added intersect builtin function and fixes the related tests which only checked result correctness for a subset of test cases.
[ { "change_type": "MODIFY", "old_path": "scripts/builtin/intersect.dml", "new_path": "scripts/builtin/intersect.dml", "diff": "@@ -48,6 +48,5 @@ m_intersect = function(Matrix[Double] X, Matrix[Double] Y)\nI = X[1:n,] * Y[1:n,]\n# reconstruct integer values and create output\n- Iv = I * seq(1,n)\n- R ...
Java
Apache License 2.0
apache/systemds
[SYSTEMDS-196] Cleanup intersect builtin and related tests This patch removes unnecessary operations from the recently added intersect builtin function and fixes the related tests which only checked result correctness for a subset of test cases.
49,720
22.03.2020 13:44:17
-3,600
023208d470fa37b53f7b74b445a553de6a15fe6f
[Minor] Fix null value handling
[ { "change_type": "MODIFY", "old_path": "src/main/java/org/tugraz/sysds/runtime/matrix/data/FrameBlock.java", "new_path": "src/main/java/org/tugraz/sysds/runtime/matrix/data/FrameBlock.java", "diff": "@@ -1791,7 +1791,7 @@ public class FrameBlock implements Writable, CacheBlock, Externalizable\n//rea...
Java
Apache License 2.0
apache/systemds
[Minor] Fix null value handling
49,746
22.03.2020 20:48:45
-3,600
56798474386434e6a17739640d311fca58f5d72e
[MINOR] Switch to absolute import paths and update docs of python bindings Closes
[ { "change_type": "MODIFY", "old_path": "src/main/python/docs/source/install.rst", "new_path": "src/main/python/docs/source/install.rst", "diff": "@@ -31,13 +31,13 @@ SystemDS is a java-project, the `pip` package contains all the necessary `jars`,\nbut you will need java version 8 installed. Do not u...
Java
Apache License 2.0
apache/systemds
[MINOR] Switch to absolute import paths and update docs of python bindings Closes #124
49,693
23.03.2020 00:33:50
-3,600
732f287f0668c5c60564dd6f5412f27f72f6a57b
[MINOR] Make github workflow actions for python tests pass successfully * Ignore unclosed socket warning * Explicitly close py4j gateway * Send return to stdin of the gateway process * Wait three seconds between launching tests to give the gateway socket time to shutdown Closes
[ { "change_type": "MODIFY", "old_path": ".github/workflows/python.yml", "new_path": ".github/workflows/python.yml", "diff": "@@ -73,7 +73,15 @@ jobs:\nls tests/\necho \"Beginning tests\"\npython tests/test_matrix_binary_op.py\n+ echo \"Exit Status: \" $?\n+ sleep 3\npython tests/test_matrix_aggregati...
Java
Apache License 2.0
apache/systemds
[MINOR] Make github workflow actions for python tests pass successfully * Ignore unclosed socket warning * Explicitly close py4j gateway * Send return to stdin of the gateway process * Wait three seconds between launching tests to give the gateway socket time to shutdown Closes #125
49,706
23.03.2020 15:48:40
-3,600
74b78d3a681656ffeb058193c9d6ba684c90787e
[MINOR] Pipe stderror to out for tests in docker
[ { "change_type": "MODIFY", "old_path": "docker/entrypoint.sh", "new_path": "docker/entrypoint.sh", "diff": "@@ -40,7 +40,7 @@ log=\"/tmp/sysdstest.log\"\necho \"Starting Tests\"\n-grepvals=\"$(mvn surefire:test -DskipTests=false -Dtest=$1 | tee $log | grep $grep_args)\"\n+grepvals=\"$(mvn surefire:t...
Java
Apache License 2.0
apache/systemds
[MINOR] Pipe stderror to out for tests in docker
49,693
23.03.2020 18:05:01
-3,600
4d085ad5c9df30c54d4de7f412f327df5cb7b84b
[MINOR] Omit producing code for a conditional with SpoofOuterProduct
[ { "change_type": "MODIFY", "old_path": "src/main/java/org/tugraz/sysds/hops/codegen/template/TemplateOuterProduct.java", "new_path": "src/main/java/org/tugraz/sysds/hops/codegen/template/TemplateOuterProduct.java", "diff": "@@ -129,13 +129,21 @@ public class TemplateOuterProduct extends TemplateBase...
Java
Apache License 2.0
apache/systemds
[MINOR] Omit producing code for a conditional with SpoofOuterProduct
49,706
23.03.2020 19:28:20
-3,600
7b26f109b67d81cb8a4ab841a404fb18fc8a11cd
[MINOR] update R version in docker This also change the the testing image to debian distribution instead of the previous alpine distribution.
[ { "change_type": "MODIFY", "old_path": "docker/testsysds.Dockerfile", "new_path": "docker/testsysds.Dockerfile", "diff": "#\n#-------------------------------------------------------------\n-# Use Alpine OpenJDK 8 base\n-FROM openjdk:8-alpine\n+# Use OpenJDK 8 debian base\n+FROM openjdk:8\n+# Use R o...
Java
Apache License 2.0
apache/systemds
[MINOR] update R version in docker This also change the the testing image to debian distribution instead of the previous alpine distribution.
49,706
23.03.2020 20:05:05
-3,600
a93ad0c4b45e14e6357e2df723bdcaeea3c961fc
[MINOR] fix docker image now containing java
[ { "change_type": "MODIFY", "old_path": "docker/README.md", "new_path": "docker/README.md", "diff": "@@ -78,3 +78,12 @@ docker push sebaba/testingsysds:0.2\n```\nFor each of the tests that require R, this image is simply used, because it skips the installation of the R packages, since they are instal...
Java
Apache License 2.0
apache/systemds
[MINOR] fix docker image now containing java
49,693
24.03.2020 00:52:34
-3,600
4cfe866eb0cc86f7bdb0a6d79cbb3051e3533be2
[MINOR] Readme updates and a lot of pointers to documentation
[ { "change_type": "MODIFY", "old_path": "README.md", "new_path": "README.md", "diff": "@@ -23,7 +23,7 @@ limitations under the License.\n**Overview:** SystemDS is a versatile system for the end-to-end data science lifecycle from data integration, cleaning, and feature engineering, over efficient, loc...
Java
Apache License 2.0
apache/systemds
[MINOR] Readme updates and a lot of pointers to documentation
49,693
24.03.2020 00:53:21
-3,600
b1c9c4817f37cc79173570acd66783009becf815
[MINOR] GPG public key that will be used for signing the artifacts
[ { "change_type": "ADD", "old_path": null, "new_path": "dev/release/damslab-pubkey.asc", "diff": "+-----BEGIN PGP PUBLIC KEY BLOCK-----\n+\n+mQINBF1pQWIBEACkUyhORiP/RjxYHiX1Mtkp8HTjzpS4T3E2Wg9Ey6V7rpKhPtKm\n+qwJW4rPU7IK/CRVbT7nsR7OQaDQaMY9ptATloWpUNSbmH+fKq9JsQll1kJOcLgUe\n+0QPZ5KJK3ZNMdlFva5k13nMjGI...
Java
Apache License 2.0
apache/systemds
[MINOR] GPG public key that will be used for signing the artifacts
49,693
24.03.2020 01:05:22
-3,600
a58261ae817876a07b4330a23fac06d620218adc
[MINOR] Ignore pubkey in rat check; left a note on the working openjdk version (jdk8u232-b09)
[ { "change_type": "MODIFY", "old_path": "pom.xml", "new_path": "pom.xml", "diff": "<exclude>**/target/**</exclude>\n<exclude>**/README.md</exclude>\n<exclude>**/*.svg</exclude>\n+ <exclude>dev/release/damslab-pubkey.asc</exclude>\n<!-- Jupyter Notebooks -->\n<exclude>**/*.ipynb</exclude>\n<!-- Genera...
Java
Apache License 2.0
apache/systemds
[MINOR] Ignore pubkey in rat check; left a note on the working openjdk version (jdk8u232-b09)
49,706
24.03.2020 13:09:49
-3,600
809ef0c0226aa1447661b477259ef8bda1309802
[MINOR] Split codegenalg tests
[ { "change_type": "MODIFY", "old_path": ".github/workflows/functionsTests.yml", "new_path": ".github/workflows/functionsTests.yml", "diff": "@@ -49,7 +49,8 @@ jobs:\nbuiltin,\ncaching,\ncodegen,\n- codegenalg,\n+ codegenalg.partone,\n+ codegenalg.parttwo,\ndata.misc,\ndata.rand,\ndata.tensor,\n" },...
Java
Apache License 2.0
apache/systemds
[MINOR] Split codegenalg tests
49,720
24.03.2020 21:11:49
-3,600
a5a8d4e0040308993d7892be11dae63c81575efd
[MINOR] Fix jdk8u242 integration issue on Windows
[ { "change_type": "MODIFY", "old_path": "src/test/java/org/tugraz/sysds/test/AutomatedTestBase.java", "new_path": "src/test/java/org/tugraz/sysds/test/AutomatedTestBase.java", "diff": "@@ -94,62 +94,57 @@ public abstract class AutomatedTestBase {\npublic static final int FED_WORKER_WAIT = 500; // in ...
Java
Apache License 2.0
apache/systemds
[MINOR] Fix jdk8u242 integration issue on Windows
49,738
28.03.2020 00:28:46
-3,600
2cc922c856967d75afac09f80fd4df73a620584a
[MINOR] Fix mlcontext function tests (wrong url)
[ { "change_type": "MODIFY", "old_path": "src/test/java/org/apache/sysds/test/functions/mlcontext/MLContextTest.java", "new_path": "src/test/java/org/apache/sysds/test/functions/mlcontext/MLContextTest.java", "diff": "@@ -158,7 +158,7 @@ public class MLContextTest extends MLContextTestBase {\n@Test\np...
Java
Apache License 2.0
apache/systemds
[MINOR] Fix mlcontext function tests (wrong url)
49,706
28.03.2020 20:22:12
-3,600
dab09916436c9518afa3cf8da572db2bde32207a
Improved github workflows (cache dependencies) Closes
[ { "change_type": "MODIFY", "old_path": ".github/workflows/applicationTests.yml", "new_path": ".github/workflows/applicationTests.yml", "diff": "@@ -39,7 +39,8 @@ jobs:\nos: [ubuntu-latest]\nname: Ap Test ${{ matrix.tests }}\nsteps:\n- - uses: actions/checkout@v2\n+ - name: Checkout Repository\n+ use...
Java
Apache License 2.0
apache/systemds
[SYSTEMDS-301] Improved github workflows (cache dependencies) Closes #869.