blob: cad4e3574a8bb19dd199dc83a08614908238acb4 [file] [log] [blame]
# -------------------------------------------------------------
#
# 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 unittest
import random
import numpy as np
from systemds.context import SystemDSContext
from systemds.matrix import Matrix
np.random.seed(7)
shape = (random.randrange(1, 25), random.randrange(1, 25))
m = np.random.rand(shape[0], shape[1])
mx = np.random.rand(1, shape[1])
my = np.random.rand(shape[0], 1)
class TestReverse(unittest.TestCase):
sds: SystemDSContext = None
@classmethod
def setUpClass(cls):
cls.sds = SystemDSContext()
@classmethod
def tearDownClass(cls):
cls.sds.close()
def test_basic(self):
Matrix(self.sds, m)
r = Matrix(self.sds, m).rev().compute()
self.assertTrue(np.allclose(r, np.flip(m, 0)))
def test_empty(self):
m_empty = np.asarray([[]])
r = Matrix(self.sds, np.asarray(m_empty)).rev().compute()
self.assertTrue(np.allclose(r, m_empty))
def test_x_axis(self):
self.assertTrue(np.allclose(Matrix(self.sds, mx).rev().compute(), mx))
def test_y_axis(self):
self.assertTrue(np.allclose(Matrix(self.sds, my).rev().compute(), np.flip(my, 0)))
if __name__ == "__main__":
unittest.main(exit=False)