blob: 274d8127b59c4dda111cbc25dbf25c69bd09776d [file]
# -------------------------------------------------------------
#
# 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.
#
# -------------------------------------------------------------
import io
import json
import os
import shutil
import sys
import unittest
import numpy as np
from systemds.context import SystemDSContext
os.environ["SYSDS_QUIET"] = "1"
dim = 5
np.random.seed(132)
m1 = np.array(np.random.randint(100, size=dim * dim) + 1.01, dtype=np.double)
m1.shape = (dim, dim)
m2 = np.array(np.random.randint(5, size=dim * dim) + 1, dtype=np.double)
m2.shape = (dim, dim)
tempdir = "./tests/federated/tmp/test_federated_aggregations/"
mtd = {
"format": "csv",
"header": True,
"rows": dim,
"cols": dim,
"data_type": "matrix",
"value_type": "double",
}
# Create the testing directory if it does not exist.
if not os.path.exists(tempdir):
os.makedirs(tempdir)
# Save data files for the Federated workers.
np.savetxt(tempdir + "m1.csv", m1, delimiter=",", header="a,b,c,d,e")
with io.open(tempdir + "m1.csv.mtd", "w", encoding="utf-8") as f:
f.write(json.dumps(mtd, ensure_ascii=False))
np.savetxt(tempdir + "m2.csv", m2, delimiter=",", header="a,b,c,d,e")
with io.open(tempdir + "m2.csv.mtd", "w", encoding="utf-8") as f:
f.write(json.dumps(mtd, ensure_ascii=False))
# Federated workers + file locations
fed1 = "localhost:8001/" + tempdir + "m1.csv"
fed2 = "localhost:8002/" + tempdir + "m2.csv"
class TestFederatedAggFn(unittest.TestCase):
sds: SystemDSContext = None
@classmethod
def setUpClass(cls):
cls.sds = SystemDSContext(capture_stdout=True, logging_level=50)
@classmethod
def tearDownClass(cls):
cls.sds.close()
def test_sum3(self):
# [[m1,m1,m1,m1,m1,m2,m2,m2,m2,m2]
# [m1,m1,m1,m1,m1,m2,m2,m2,m2,m2]
# [m1,m1,m1,m1,m1,m2,m2,m2,m2,m2]
# [m1,m1,m1,m1,m1,m2,m2,m2,m2,m2]
# [m1,m1,m1,m1,m1,m2,m2,m2,m2,m2]]
f_m_a = (
self.sds.federated(
[fed1, fed2], [([0, 0], [dim, dim]), ([0, dim], [dim, dim * 2])]
)
.sum()
.compute()
)
m1_m2 = m1.sum() + m2.sum()
self.assertAlmostEqual(f_m_a, m1_m2)
def test_sum1(self):
f_m1 = self.sds.federated([fed1], [([0, 0], [dim, dim])]).sum().compute()
m1_r = m1.sum()
self.assertAlmostEqual(f_m1, m1_r)
def test_sum2(self):
f_m2 = self.sds.federated([fed2], [([0, 0], [dim, dim])]).sum().compute()
m2_r = m2.sum()
self.assertAlmostEqual(f_m2, m2_r)
def test_sum3(self):
# [[m1,m1,m1,m1,m1,m2,m2,m2,m2,m2]
# [m1,m1,m1,m1,m1,m2,m2,m2,m2,m2]
# [m1,m1,m1,m1,m1,m2,m2,m2,m2,m2]
# [m1,m1,m1,m1,m1,m2,m2,m2,m2,m2]
# [m1,m1,m1,m1,m1,m2,m2,m2,m2,m2]]
f_m1_m2 = (
self.sds.federated(
[fed1, fed2], [([0, 0], [dim, dim]), ([0, dim], [dim, dim * 2])]
)
.sum()
.compute()
)
m1_m2 = np.concatenate((m1, m2), axis=1).sum()
self.assertAlmostEqual(f_m1_m2, m1_m2)
def test_sum4(self):
# [[m1,m1,m1,m1,m1]
# [m1,m1,m1,m1,m1]
# [m1,m1,m1,m1,m1]
# [m1,m1,m1,m1,m1]
# [m1,m1,m1,m1,m1]
# [m2,m2,m2,m2,m2]
# [m2,m2,m2,m2,m2]
# [m2,m2,m2,m2,m2]
# [m2,m2,m2,m2,m2]
# [m2,m2,m2,m2,m2]]
f_m1_m2 = (
self.sds.federated(
[fed1, fed2], [([0, 0], [dim, dim]), ([dim, 0], [dim * 2, dim])]
)
.sum()
.compute()
)
m1_m2 = np.concatenate((m1, m2)).sum()
self.assertAlmostEqual(f_m1_m2, m1_m2)
# -----------------------------------
# The rest of the tests are
# Extended functionality not working Yet
# -----------------------------------
def test_sum5(self):
# [[m1,m1,m1,m1,m1, 0, 0, 0, 0, 0]
# [m1,m1,m1,m1,m1, 0, 0, 0, 0, 0]
# [m1,m1,m1,m1,m1,m2,m2,m2,m2,m2]
# [m1,m1,m1,m1,m1,m2,m2,m2,m2,m2]
# [m1,m1,m1,m1,m1,m2,m2,m2,m2,m2]
# [ 0, 0, 0, 0, 0,m2,m2,m2,m2,m2]
# [ 0, 0, 0, 0, 0,m2,m2,m2,m2,m2]]
f_m_a = (
self.sds.federated(
[fed1, fed2], [([0, 0], [dim, dim]), ([2, dim], [dim + 2, dim * 2])]
)
.sum()
.compute()
)
m1_m2 = m1.sum() + m2.sum()
self.assertAlmostEqual(f_m_a, m1_m2)
# def test_sum6(self):
# # Note it overwrites the value in the field. not sum or anything else.
# # [[m1,m1,m1,m1,m1, 0, 0, 0]
# # [m1,m1,m1,m1,m1, 0, 0, 0]
# # [m1,m1,m1,m2,m2,m2,m2,m2]
# # [m1,m1,m1,m2,m2,m2,m2,m2]
# # [m1,m1,m1,m2,m2,m2,m2,m2]
# # [ 0, 0, 0,m2,m2,m2,m2,m2]
# # [ 0, 0, 0,m2,m2,m2,m2,m2]]
# f_m_a = (
# self.sds.federated(
# [fed1, fed2], [([0, 0], [dim, dim]), ([2, 3], [dim + 2, dim + 3])]
# )
# .sum()
# .compute()
# )
# m1_m2 = m1.sum() + m2.sum()
# m1_m2 = m1_m2 - m1[3:5, 2:5].sum()
# self.assertAlmostEqual(f_m_a, m1_m2)
# def test_sum7(self):
# # [[m1,m1,m1,m1,m1, 0, 0, 0]
# # [m1,m1,m1,m1,m1, 0, 0, 0]
# # [m1,m1,m1,m2,m2,m2,m2,m2]
# # [m1,m1,m1,m2,m2,m2,m2,m2] + 1
# # [m1,m1,m1,m2,m2,m2,m2,m2]
# # [ 0, 0, 0,m2,m2,m2,m2,m2]
# # [ 0, 0, 0,m2,m2,m2,m2,m2]]
# f_m_a = self.sds.federated(
# [fed1, fed2], [([0, 0], [dim, dim]), ([2, 3], [dim + 2, dim + 3])]
# )
# f_m_a = (f_m_a + 1).sum().compute()
# m1_m2 = m1.sum() + m2.sum()
# m1_m2 = m1_m2 - m1[3:5, 2:5].sum()
# m1_m2 = m1_m2 + (7 * 8)
# self.assertAlmostEqual(f_m_a, m1_m2)
def test_sum8(self):
# [[ 0, 0, 0, 0, 0, 0, 0, 0]
# [ 0, 0, 0, 0, 0, 0, 0, 0]
# [ 0, 0, 0,m1,m1,m1,m1,m1]
# [ 0, 0, 0,m1,m1,m1,m1,m1]
# [ 0, 0, 0,m1,m1,m1,m1,m1]
# [ 0, 0, 0,m1,m1,m1,m1,m1]
# [ 0, 0, 0,m1,m1,m1,m1,m1]]
f_m_a = (
self.sds.federated([fed1], [([2, 3], [dim + 2, dim + 3])]).sum().compute()
)
m = m1.sum()
self.assertAlmostEqual(f_m_a, m)
# def test_sum9(self):
# # [[ 0, 0, 0, 0, 0, 0, 0, 0]
# # [ 0, 0, 0, 0, 0, 0, 0, 0]
# # [ 0, 0, 0,m1,m1,m1,m1,m1]
# # [ 0, 0, 0,m1,m1,m1,m1,m1] + 1
# # [ 0, 0, 0,m1,m1,m1,m1,m1]
# # [ 0, 0, 0,m1,m1,m1,m1,m1]
# # [ 0, 0, 0,m1,m1,m1,m1,m1]]
# f_m_a = self.sds.federated( [fed1], [([2, 3], [dim + 2, dim + 3])])
# f_m_a = (f_m_a + 1).sum().compute()
# m = m1.sum()
# m = m + (7 * 8)
# self.assertAlmostEqual(f_m_a, m)
if __name__ == "__main__":
unittest.main(exit=False)