mindspore/tests/st/ops/gpu/test_matrix_solve.py

151 lines
5.3 KiB
Python

# Copyright 2022 Huawei Technologies Co., Ltd
#
# Licensed 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 mindspore.context as context
from mindspore import Tensor, ops, nn
from mindspore import dtype as mstype
import numpy as np
import pytest
class MatrixSolveNet(nn.Cell):
def __init__(self, adjoint=False):
super(MatrixSolveNet, self).__init__()
self.adjoint = adjoint
def construct(self, matrix, rhs):
return ops.matrix_solve(matrix, rhs, self.adjoint)
@pytest.mark.level1
@pytest.mark.platform_x86_gpu_training
@pytest.mark.env_onecard
@pytest.mark.parametrize('adjoint', [True, False])
@pytest.mark.parametrize('rhs_shape', [[10, 5], [3, 2, 5, 4], [1, 3, 4]])
@pytest.mark.parametrize('dtype, error', [(np.float32, 1e-5), (np.float64, 1e-12)])
def test_matrix_solve(adjoint, rhs_shape, dtype, error):
"""
Feature: ALL To ALL
Description: test cases for MatrixSolve
Expectation: the result match to scipy
"""
m = rhs_shape[-2]
matrix_shape = rhs_shape[:]
matrix_shape[-1] = m
np.random.seed(0)
context.set_context(device_target="GPU")
matrix = np.random.normal(-10, 10, np.prod(matrix_shape)).reshape(matrix_shape).astype(dtype)
rhs = np.random.normal(-10, 10, np.prod(rhs_shape)).reshape(rhs_shape).astype(dtype)
matrix_np = np.swapaxes(matrix, -1, -2) if adjoint else matrix
result = ops.matrix_solve(Tensor(matrix), Tensor(rhs), adjoint).asnumpy()
if dtype == np.float16:
expected = np.linalg.solve(matrix_np.astype(np.float32), rhs.astype(np.float32))
else:
expected = np.linalg.solve(matrix_np, rhs)
assert np.allclose(result, expected, atol=error, rtol=error)
@pytest.mark.level1
@pytest.mark.platform_x86_gpu_training
@pytest.mark.env_onecard
@pytest.mark.parametrize('adjoint', [True, False])
@pytest.mark.parametrize('m', [10])
@pytest.mark.parametrize('k', [5])
@pytest.mark.parametrize('dtype, error', [(np.complex64, 1e-5), (np.complex128, 1e-12)])
def test_matrix_solve_complex(adjoint, m, k, dtype, error):
"""
Feature: ALL To ALL
Description: test cases for MatrixSolve
Expectation: the result match to scipy
"""
np.random.seed(0)
context.set_context(device_target="GPU")
matrix = np.random.normal(-10, 10, m * m).reshape((m, m)).astype(dtype)
matrix.imag = np.random.normal(-10, 10, m * m).reshape((m, m)).astype(dtype)
rhs = np.random.normal(-10, 10, m * k).reshape((m, k)).astype(dtype)
rhs.imag = np.random.normal(-10, 10, m * k).reshape((m, k)).astype(dtype)
matrix_np = np.conj(np.transpose(matrix)) if adjoint else matrix
result = ops.matrix_solve(Tensor(matrix), Tensor(rhs), adjoint).asnumpy()
expected = np.linalg.solve(matrix_np, rhs)
assert np.allclose(result, expected, atol=error, rtol=error)
@pytest.mark.level1
@pytest.mark.platform_x86_gpu_training
@pytest.mark.env_onecard
@pytest.mark.parametrize('adjoint', [True, False])
@pytest.mark.parametrize('dtype, error', [(np.float32, 1e-5), (np.float64, 1e-12)])
def test_matrix_solve_vmap(adjoint, dtype, error):
"""
Feature: ALL To ALL
Description: test cases for MatrixSolve
Expectation: the result match to scipy
"""
np.random.seed(0)
context.set_context(device_target="CPU")
matrix_shape = (3, 2, 5, 5)
rhs_shape = (3, 2, 5, 4)
matrix = np.random.normal(-10, 10, np.prod(matrix_shape)).reshape(matrix_shape).astype(dtype)
rhs = np.random.normal(-10, 10, np.prod(rhs_shape)).reshape(rhs_shape).astype(dtype)
matrix_np = np.swapaxes(matrix, -1, -2) if adjoint else matrix
result = ops.vmap(ops.matrix_solve, (0, 0, None))(Tensor(matrix), Tensor(rhs), adjoint).asnumpy()
expected = np.linalg.solve(matrix_np, rhs)
assert np.allclose(result, expected, atol=error, rtol=error)
@pytest.mark.level1
@pytest.mark.platform_x86_gpu_training
@pytest.mark.env_onecard
def test_matrix_solve_dynamic_shape():
"""
Feature: ALL To ALL
Description: test cases for MatrixSolve
Expectation: the result match to scipy
"""
adjoint = True
rhs_shape = [2, 3, 4]
matrix_shape = [2, 3, 3]
dtype, error = np.float32, 1e-5
np.random.seed(0)
context.set_context(mode=context.GRAPH_MODE, device_target="GPU")
matrix = np.random.normal(-10, 10, np.prod(matrix_shape)).reshape(matrix_shape).astype(dtype)
rhs = np.random.normal(-10, 10, np.prod(rhs_shape)).reshape(rhs_shape).astype(dtype)
matrix_np = np.swapaxes(matrix, -1, -2) if adjoint else matrix
dynamic_net = MatrixSolveNet(adjoint=adjoint)
place_holder = Tensor(shape=[2, 3, None], dtype=mstype.float32)
dynamic_net.set_inputs(place_holder, place_holder)
result = dynamic_net(Tensor(matrix), Tensor(rhs)).asnumpy()
expected = np.linalg.solve(matrix_np, rhs)
assert np.allclose(result, expected, atol=error, rtol=error)