-
Notifications
You must be signed in to change notification settings - Fork 467
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[SYSTEMDS-3790] Restore federated planner tests (all, heuristic)
Closes #2139.
- Loading branch information
Showing
12 changed files
with
2,174 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
176 changes: 176 additions & 0 deletions
176
...a/org/apache/sysds/test/functions/federated/fedplanning/FederatedDynamicPlanningTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,176 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one | ||
* or more contributor license agreements. See the NOTICE file | ||
* distributed with this work for additional information | ||
* regarding copyright ownership. The ASF licenses this file | ||
* to you under the Apache License, Version 2.0 (the | ||
* "License"); you may not use this file except in compliance | ||
* with the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, | ||
* software distributed under the License is distributed on an | ||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
* KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
|
||
package org.apache.sysds.test.functions.federated.fedplanning; | ||
|
||
import org.apache.commons.logging.Log; | ||
import org.apache.commons.logging.LogFactory; | ||
import org.apache.sysds.api.DMLScript; | ||
import org.apache.sysds.common.Types; | ||
import org.apache.sysds.runtime.meta.MatrixCharacteristics; | ||
import org.apache.sysds.test.AutomatedTestBase; | ||
import org.apache.sysds.test.TestConfiguration; | ||
import org.apache.sysds.test.TestUtils; | ||
import org.junit.Ignore; | ||
import org.junit.Test; | ||
|
||
import java.io.File; | ||
import java.util.Arrays; | ||
|
||
import static org.junit.Assert.fail; | ||
|
||
@net.jcip.annotations.NotThreadSafe | ||
public class FederatedDynamicPlanningTest extends AutomatedTestBase { | ||
private static final Log LOG = LogFactory.getLog(FederatedDynamicPlanningTest.class.getName()); | ||
|
||
private final static String TEST_DIR = "functions/privacy/fedplanning/"; | ||
private final static String TEST_NAME = "FederatedDynamicFunctionPlanningTest"; | ||
private final static String TEST_CLASS_DIR = TEST_DIR + FederatedDynamicPlanningTest.class.getSimpleName() + "/"; | ||
private static File TEST_CONF_FILE; | ||
|
||
private final static int blocksize = 1024; | ||
public final int rows = 1000; | ||
public final int cols = 1000; | ||
|
||
@Override | ||
public void setUp() { | ||
TestUtils.clearAssertionInformation(); | ||
addTestConfiguration(TEST_NAME, new TestConfiguration(TEST_CLASS_DIR, TEST_NAME, new String[] {"Z"})); | ||
} | ||
|
||
@Test | ||
@Ignore | ||
public void runDynamicFullFunctionTest() { | ||
// compared to `FederatedL2SVMPlanningTest` this does not create `fed_+*` or `fed_tsmm`, probably due to | ||
// some rewrites not being applied. Might be a bug. | ||
String[] expectedHeavyHitters = new String[] {"fed_fedinit", "fed_ba+*", "fed_tak+*", "fed_max", | ||
"fed_1-*", "fed_>"}; | ||
setTestConf("SystemDS-config-fout.xml"); | ||
loadAndRunTest(expectedHeavyHitters, TEST_NAME); | ||
} | ||
|
||
@Test | ||
@Ignore | ||
public void runDynamicHeuristicFunctionTest() { | ||
// compared to `FederatedL2SVMPlanningTest` this does not create `fed_+*` or `fed_tsmm`, probably due to | ||
// some rewrites not being applied. Might be a bug. | ||
String[] expectedHeavyHitters = new String[] {"fed_fedinit", "fed_ba+*"}; | ||
setTestConf("SystemDS-config-heuristic.xml"); | ||
loadAndRunTest(expectedHeavyHitters, TEST_NAME); | ||
} | ||
|
||
private void setTestConf(String test_conf) { | ||
TEST_CONF_FILE = new File(SCRIPT_DIR + TEST_DIR, test_conf); | ||
} | ||
|
||
private void writeInputMatrices() { | ||
writeBinaryVector("A", 42, rows); | ||
writeStandardMatrix("B1", 65, rows / 2, cols); | ||
writeStandardMatrix("B2", 75, rows / 2, cols); | ||
writeStandardMatrix("C1", 13, rows, cols / 2); | ||
writeStandardMatrix("C2", 17, rows, cols / 2); | ||
} | ||
|
||
private void writeBinaryVector(String matrixName, long seed, int numRows){ | ||
double[][] matrix = getRandomMatrix(numRows, 1, -1, 1, 1, seed); | ||
for(int i = 0; i < numRows; i++) | ||
matrix[i][0] = (matrix[i][0] > 0) ? 1 : -1; | ||
MatrixCharacteristics mc = new MatrixCharacteristics(numRows, 1, blocksize, numRows); | ||
writeInputMatrixWithMTD(matrixName, matrix, false, mc); | ||
} | ||
|
||
private void writeStandardMatrix(String matrixName, long seed, int numRows, int numCols) { | ||
double[][] matrix = getRandomMatrix(numRows, numCols, 0, 1, 1, seed); | ||
writeStandardMatrix(matrixName, numRows, numCols, matrix); | ||
} | ||
|
||
private void writeStandardMatrix(String matrixName, int numRows, int numCols, double[][] matrix) { | ||
MatrixCharacteristics mc = new MatrixCharacteristics(numRows, numCols, blocksize, (long) numRows * numCols); | ||
writeInputMatrixWithMTD(matrixName, matrix, false, mc); | ||
} | ||
|
||
private void loadAndRunTest(String[] expectedHeavyHitters, String testName) { | ||
|
||
boolean sparkConfigOld = DMLScript.USE_LOCAL_SPARK_CONFIG; | ||
Types.ExecMode platformOld = rtplatform; | ||
rtplatform = Types.ExecMode.SINGLE_NODE; | ||
|
||
Thread t1 = null, t2 = null; | ||
|
||
try { | ||
getAndLoadTestConfiguration(testName); | ||
String HOME = SCRIPT_DIR + TEST_DIR; | ||
|
||
writeInputMatrices(); | ||
|
||
int port1 = getRandomAvailablePort(); | ||
int port2 = getRandomAvailablePort(); | ||
t1 = startLocalFedWorkerThread(port1, FED_WORKER_WAIT_S); | ||
t2 = startLocalFedWorkerThread(port2); | ||
|
||
// Run actual dml script with federated matrix | ||
fullDMLScriptName = HOME + testName + ".dml"; | ||
programArgs = new String[] {"-stats", "-nvargs", | ||
"r=" + rows, "c=" + cols, | ||
"A=" + input("A"), | ||
"B1=" + TestUtils.federatedAddress(port1, input("B1")), | ||
"B2=" + TestUtils.federatedAddress(port2, input("B2")), | ||
"C1=" + TestUtils.federatedAddress(port1, input("C1")), | ||
"C2=" + TestUtils.federatedAddress(port2, input("C2")), | ||
"lB1=" + input("B1"), | ||
"lB2=" + input("B2"), | ||
"Z=" + output("Z")}; | ||
runTest(true, false, null, -1); | ||
|
||
// Run reference dml script with normal matrix | ||
fullDMLScriptName = HOME + testName + "Reference.dml"; | ||
programArgs = new String[] {"-nvargs", | ||
"r=" + rows, "c=" + cols, | ||
"A=" + input("A"), | ||
"B1=" + input("B1"), | ||
"B2=" + input("B2"), | ||
"C1=" + input("C1"), | ||
"C2=" + input("C2"), | ||
"Z=" + expected("Z")}; | ||
runTest(true, false, null, -1); | ||
|
||
// compare via files | ||
compareResults(1e-9); | ||
if(!heavyHittersContainsAllString(expectedHeavyHitters)) | ||
fail("The following expected heavy hitters are missing: " | ||
+ Arrays.toString(missingHeavyHitters(expectedHeavyHitters))); | ||
} | ||
finally { | ||
TestUtils.shutdownThreads(t1, t2); | ||
rtplatform = platformOld; | ||
DMLScript.USE_LOCAL_SPARK_CONFIG = sparkConfigOld; | ||
} | ||
} | ||
|
||
/** | ||
* Override default configuration with custom test configuration to ensure scratch space and local temporary | ||
* directory locations are also updated. | ||
*/ | ||
@Override | ||
protected File getConfigTemplateFile() { | ||
// Instrumentation in this test's output log to show custom configuration file used for template. | ||
LOG.info("This test case overrides default configuration with " + TEST_CONF_FILE.getPath()); | ||
return TEST_CONF_FILE; | ||
} | ||
} |
156 changes: 156 additions & 0 deletions
156
...va/org/apache/sysds/test/functions/federated/fedplanning/FederatedKMeansPlanningTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,156 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one | ||
* or more contributor license agreements. See the NOTICE file | ||
* distributed with this work for additional information | ||
* regarding copyright ownership. The ASF licenses this file | ||
* to you under the Apache License, Version 2.0 (the | ||
* "License"); you may not use this file except in compliance | ||
* with the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, | ||
* software distributed under the License is distributed on an | ||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
* KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
|
||
package org.apache.sysds.test.functions.federated.fedplanning; | ||
|
||
import org.apache.commons.logging.Log; | ||
import org.apache.commons.logging.LogFactory; | ||
import org.apache.sysds.api.DMLScript; | ||
import org.apache.sysds.common.Types; | ||
import org.apache.sysds.runtime.meta.MatrixCharacteristics; | ||
import org.apache.sysds.test.AutomatedTestBase; | ||
import org.apache.sysds.test.TestConfiguration; | ||
import org.apache.sysds.test.TestUtils; | ||
import org.junit.Test; | ||
|
||
import java.io.File; | ||
import java.util.Arrays; | ||
|
||
import static org.junit.Assert.fail; | ||
|
||
public class FederatedKMeansPlanningTest extends AutomatedTestBase { | ||
private static final Log LOG = LogFactory.getLog(FederatedKMeansPlanningTest.class.getName()); | ||
|
||
private final static String TEST_DIR = "functions/privacy/fedplanning/"; | ||
private final static String TEST_NAME = "FederatedKMeansPlanningTest"; | ||
private final static String TEST_CLASS_DIR = TEST_DIR + FederatedKMeansPlanningTest.class.getSimpleName() + "/"; | ||
private static File TEST_CONF_FILE; | ||
|
||
private final static int blocksize = 1024; | ||
public final int rows = 1000; | ||
public final int cols = 100; | ||
|
||
@Override | ||
public void setUp() { | ||
TestUtils.clearAssertionInformation(); | ||
addTestConfiguration(TEST_NAME, new TestConfiguration(TEST_CLASS_DIR, TEST_NAME, new String[] {"Z"})); | ||
} | ||
|
||
@Test | ||
public void runKMeansFOUTTest(){ | ||
String[] expectedHeavyHitters = new String[]{}; | ||
setTestConf("SystemDS-config-fout.xml"); | ||
loadAndRunTest(expectedHeavyHitters, TEST_NAME); | ||
} | ||
|
||
@Test | ||
public void runKMeansHeuristicTest(){ | ||
String[] expectedHeavyHitters = new String[]{}; | ||
setTestConf("SystemDS-config-heuristic.xml"); | ||
loadAndRunTest(expectedHeavyHitters, TEST_NAME); | ||
} | ||
|
||
@Test | ||
public void runRuntimeTest(){ | ||
String[] expectedHeavyHitters = new String[]{}; | ||
TEST_CONF_FILE = new File("src/test/config/SystemDS-config.xml"); | ||
loadAndRunTest(expectedHeavyHitters, TEST_NAME); | ||
} | ||
|
||
private void setTestConf(String test_conf){ | ||
TEST_CONF_FILE = new File(SCRIPT_DIR + TEST_DIR, test_conf); | ||
} | ||
|
||
/** | ||
* Override default configuration with custom test configuration to ensure | ||
* scratch space and local temporary directory locations are also updated. | ||
*/ | ||
@Override | ||
protected File getConfigTemplateFile() { | ||
// Instrumentation in this test's output log to show custom configuration file used for template. | ||
LOG.info("This test case overrides default configuration with " + TEST_CONF_FILE.getPath()); | ||
return TEST_CONF_FILE; | ||
} | ||
|
||
private void writeInputMatrices(){ | ||
writeStandardRowFedMatrix("X1", 65); | ||
writeStandardRowFedMatrix("X2", 75); | ||
} | ||
|
||
private void writeStandardMatrix(String matrixName, long seed, int numRows){ | ||
double[][] matrix = getRandomMatrix(numRows, cols, 0, 1, 1, seed); | ||
writeStandardMatrix(matrixName, numRows, matrix); | ||
} | ||
|
||
private void writeStandardMatrix(String matrixName, int numRows, double[][] matrix){ | ||
MatrixCharacteristics mc = new MatrixCharacteristics(numRows, cols, blocksize, (long) numRows * cols); | ||
writeInputMatrixWithMTD(matrixName, matrix, false, mc); | ||
} | ||
|
||
private void writeStandardRowFedMatrix(String matrixName, long seed){ | ||
int halfRows = rows/2; | ||
writeStandardMatrix(matrixName, seed, halfRows); | ||
} | ||
|
||
private void loadAndRunTest(String[] expectedHeavyHitters, String testName){ | ||
|
||
boolean sparkConfigOld = DMLScript.USE_LOCAL_SPARK_CONFIG; | ||
Types.ExecMode platformOld = rtplatform; | ||
rtplatform = Types.ExecMode.SINGLE_NODE; | ||
|
||
Thread t1 = null, t2 = null; | ||
|
||
try { | ||
getAndLoadTestConfiguration(testName); | ||
String HOME = SCRIPT_DIR + TEST_DIR; | ||
|
||
writeInputMatrices(); | ||
|
||
int port1 = getRandomAvailablePort(); | ||
int port2 = getRandomAvailablePort(); | ||
t1 = startLocalFedWorkerThread(port1, FED_WORKER_WAIT_S); | ||
t2 = startLocalFedWorkerThread(port2); | ||
|
||
// Run actual dml script with federated matrix | ||
fullDMLScriptName = HOME + testName + ".dml"; | ||
programArgs = new String[] { "-stats", "-nvargs", | ||
"X1=" + TestUtils.federatedAddress(port1, input("X1")), | ||
"X2=" + TestUtils.federatedAddress(port2, input("X2")), | ||
"Y=" + input("Y"), "r=" + rows, "c=" + cols, "Z=" + output("Z")}; | ||
runTest(true, false, null, -1); | ||
|
||
// Run reference dml script with normal matrix | ||
fullDMLScriptName = HOME + testName + "Reference.dml"; | ||
programArgs = new String[] {"-nvargs", "X1=" + input("X1"), "X2=" + input("X2"), | ||
"Y=" + input("Y"), "Z=" + expected("Z")}; | ||
runTest(true, false, null, -1); | ||
|
||
// compare via files | ||
compareResults(1e-9); | ||
if (!heavyHittersContainsAllString(expectedHeavyHitters)) | ||
fail("The following expected heavy hitters are missing: " | ||
+ Arrays.toString(missingHeavyHitters(expectedHeavyHitters))); | ||
} | ||
finally { | ||
TestUtils.shutdownThreads(t1, t2); | ||
rtplatform = platformOld; | ||
DMLScript.USE_LOCAL_SPARK_CONFIG = sparkConfigOld; | ||
} | ||
} | ||
} |
Oops, something went wrong.