mindspore/tests/st/parameter/test_parameter_ms_function.py

42 lines
1.4 KiB
Python
Raw Normal View History

2021-11-22 20:22:27 +08:00
# 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 pytest
import mindspore as ms
from mindspore import context, Tensor, jit
2021-11-22 20:22:27 +08:00
from mindspore.common.parameter import Parameter
@pytest.mark.level1
@pytest.mark.platform_arm_ascend_training
@pytest.mark.platform_x86_ascend_training
@pytest.mark.env_onecard
@pytest.mark.parametrize('mode', [context.GRAPH_MODE])
def test_parameter_ms_function_2(mode):
2021-11-22 20:22:27 +08:00
"""
Feature: Check the names of parameters.
Description: Check the name of parameter in ms_function.
Expectation: No exception.
"""
param_a = Parameter(Tensor([1], ms.float32), name="name_a")
param_b = param_a
@jit
2021-11-22 20:22:27 +08:00
def test_parameter_ms_function():
return param_a + param_b
context.set_context(mode=mode)
2021-11-22 20:22:27 +08:00
res = test_parameter_ms_function()
assert res == 2