Repository: systemml Updated Branches: refs/heads/master 4f1223a9a -> e7994b745
[HOTFIX][SYSTEMML-2070] Fix compressed LinregCG (R script location) Project: http://git-wip-us.apache.org/repos/asf/systemml/repo Commit: http://git-wip-us.apache.org/repos/asf/systemml/commit/e7994b74 Tree: http://git-wip-us.apache.org/repos/asf/systemml/tree/e7994b74 Diff: http://git-wip-us.apache.org/repos/asf/systemml/diff/e7994b74 Branch: refs/heads/master Commit: e7994b7459316ec0955b87dee9079bbf60088851 Parents: 4f1223a Author: Matthias Boehm <[email protected]> Authored: Mon Jan 15 11:43:42 2018 -0800 Committer: Matthias Boehm <[email protected]> Committed: Mon Jan 15 11:43:42 2018 -0800 ---------------------------------------------------------------------- .../test/integration/functions/compress/CompressedLinregCG.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/systemml/blob/e7994b74/src/test/java/org/apache/sysml/test/integration/functions/compress/CompressedLinregCG.java ---------------------------------------------------------------------- diff --git a/src/test/java/org/apache/sysml/test/integration/functions/compress/CompressedLinregCG.java b/src/test/java/org/apache/sysml/test/integration/functions/compress/CompressedLinregCG.java index a7e0971..3999cff 100644 --- a/src/test/java/org/apache/sysml/test/integration/functions/compress/CompressedLinregCG.java +++ b/src/test/java/org/apache/sysml/test/integration/functions/compress/CompressedLinregCG.java @@ -105,7 +105,7 @@ public class CompressedLinregCG extends AutomatedTestBase /* This is for running the junit test the new way, i.e., construct the arguments directly */ String HOME1 = SCRIPT_DIR + "functions/compress/"; - String HOME2 = SCRIPT_DIR + "functions/codegen/"; + String HOME2 = SCRIPT_DIR + "functions/codegenalg/"; fullDMLScriptName = "scripts/algorithms/LinearRegCG.dml"; programArgs = new String[]{ "-explain", "-stats", "-nvargs", "X="+input("X"), "Y="+input("y"), "icpt="+String.valueOf(intercept), "tol="+String.valueOf(epsilon),
