forked from mindspore-Ecosystem/mindspore
51 lines
1.8 KiB
Python
51 lines
1.8 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 pytest
|
|
import numpy as np
|
|
import mindspore.nn as nn
|
|
from mindspore.ops import operations as P
|
|
from mindspore import Tensor, context
|
|
|
|
|
|
context.set_context(mode=context.GRAPH_MODE, device_target='CPU')
|
|
|
|
|
|
class AssertTEST(nn.Cell):
|
|
def __init__(self, summarize):
|
|
super(AssertTEST, self).__init__()
|
|
self.assert1 = P.Assert(summarize)
|
|
|
|
def construct(self, cond, x):
|
|
return self.assert1(cond, x)
|
|
|
|
|
|
@pytest.mark.level0
|
|
@pytest.mark.env_onecard
|
|
@pytest.mark.platform_x86_gpu_training
|
|
@pytest.mark.parametrize("data_type", [np.float32, np.float16])
|
|
def test_selu_op(data_type):
|
|
"""
|
|
Feature: Assert cpu kernel
|
|
Description: test the assert summarize = 10.
|
|
Expectation: match to np benchmark.
|
|
"""
|
|
assert1 = AssertTEST(10)
|
|
x = Tensor(np.array([-2.0, -1.0, 1.0, 2.0, -1.0, 1.0, 2.0, -1.0, 1.0, 2.0, -1.0, 1.0, 2.0]).astype(data_type))
|
|
y = Tensor(np.array([-2.0, -1.0, 1.0, 2.0, -1.0, 1.0, 2.0, -1.0, 1.0, 2.0, -1.0, 1.0, 2.0]).astype(data_type))
|
|
context.set_context(mode=context.GRAPH_MODE)
|
|
assert1(True, [x, y])
|
|
context.set_context(mode=context.PYNATIVE_MODE)
|
|
assert1(False, [x, y])
|