This is an automated email from the ASF dual-hosted git repository.
mboehm7 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/systemds.git
The following commit(s) were added to refs/heads/master by this push:
new bc93ea4 [SYSTEMDS-2859] Cleanup privacy constraints L2SVM test (arg
updates)
bc93ea4 is described below
commit bc93ea4578d6826eb15e085ad9a06ea6b77a5e43
Author: Matthias Boehm <[email protected]>
AuthorDate: Thu Feb 11 23:48:04 2021 +0100
[SYSTEMDS-2859] Cleanup privacy constraints L2SVM test (arg updates)
---
.../sysds/test/functions/privacy/algorithms/FederatedL2SVMTest.java | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git
a/src/test/java/org/apache/sysds/test/functions/privacy/algorithms/FederatedL2SVMTest.java
b/src/test/java/org/apache/sysds/test/functions/privacy/algorithms/FederatedL2SVMTest.java
index f849e2b..20802a1 100644
---
a/src/test/java/org/apache/sysds/test/functions/privacy/algorithms/FederatedL2SVMTest.java
+++
b/src/test/java/org/apache/sysds/test/functions/privacy/algorithms/FederatedL2SVMTest.java
@@ -390,7 +390,7 @@ public class FederatedL2SVMTest extends AutomatedTestBase {
// Run reference dml script with normal matrix
fullDMLScriptName = HOME + TEST_NAME + "Reference.dml";
- programArgs = new String[] {"-args", input("MX1"),
input("MX2"), input("MY"), expected("Z")};
+ programArgs = new String[] {"-args", input("MX1"),
input("MX2"), input("MY"), "FALSE", expected("Z")};
runTest(true, exception1, expectedException1, -1);
// Run actual dml script with federated matrix
@@ -398,7 +398,7 @@ public class FederatedL2SVMTest extends AutomatedTestBase {
programArgs = new String[] {"-checkPrivacy",
"-nvargs", "in_X1=" +
TestUtils.federatedAddress(port1, input("X1")),
"in_X2=" + TestUtils.federatedAddress(port2,
input("X2")), "rows=" + rows, "cols=" + cols,
- "in_Y=" + input("Y"), "out=" + output("Z")};
+ "in_Y=" + input("Y"), "single=FALSE", "out=" +
output("Z")};
runTest(true, exception2, expectedException2, -1);