mindspore/tests/st/tensor/test_ndimension.py

33 lines
875 B
Python
Raw Normal View History

2022-10-25 20:21:12 +08:00
import pytest
import mindspore.common.dtype as mstype
import mindspore.nn as nn
from mindspore import Tensor
from mindspore import context
class Net(nn.Cell):
def construct(self, x):
return x.ndimension()
@pytest.mark.level0
@pytest.mark.platform_x86_cpu
@pytest.mark.platform_arm_cpu
@pytest.mark.platform_x86_gpu_training
@pytest.mark.platform_arm_ascend_training
@pytest.mark.platform_x86_ascend_training
@pytest.mark.env_onecard
@pytest.mark.parametrize('mode', [context.GRAPH_MODE, context.PYNATIVE_MODE])
def test_ndimension(mode):
"""
Feature: tensor.ndimension()
Description: Verify the result of tensor.ndimension
Expectation: success
"""
context.set_context(mode=mode)
net = Net()
x = Tensor([[1.5, 2.0], [3, 4.6], [0.3, 4.6]], dtype=mstype.float32)
output = net(x)
expected = 2
assert output == expected