forked from mindspore-Ecosystem/mindspore
del test_dropout3d of ST.
This commit is contained in:
parent
0f9745bd20
commit
4821ef574f
|
@ -66,7 +66,7 @@ def dropout_3d(keep_prob, nptype):
|
|||
assert x_np.shape == output_np.shape == mask_np.shape
|
||||
|
||||
|
||||
@pytest.mark.level0
|
||||
@pytest.mark.level2
|
||||
@pytest.mark.platform_x86_gpu_training
|
||||
@pytest.mark.env_onecard
|
||||
def test_dropout3d_float16():
|
||||
|
@ -74,7 +74,7 @@ def test_dropout3d_float16():
|
|||
dropout_3d(0.5, np.float16)
|
||||
dropout_3d(1.0, np.float16)
|
||||
|
||||
@pytest.mark.level0
|
||||
@pytest.mark.level2
|
||||
@pytest.mark.platform_x86_gpu_training
|
||||
@pytest.mark.env_onecard
|
||||
def test_dropout3d_float32():
|
||||
|
@ -82,7 +82,7 @@ def test_dropout3d_float32():
|
|||
dropout_3d(0.5, np.float32)
|
||||
dropout_3d(1.0, np.float32)
|
||||
|
||||
@pytest.mark.level0
|
||||
@pytest.mark.level2
|
||||
@pytest.mark.platform_x86_gpu_training
|
||||
@pytest.mark.env_onecard
|
||||
def test_dropout3d_int8():
|
||||
|
@ -90,7 +90,7 @@ def test_dropout3d_int8():
|
|||
dropout_3d(0.5, np.int8)
|
||||
dropout_3d(1.0, np.int8)
|
||||
|
||||
@pytest.mark.level0
|
||||
@pytest.mark.level2
|
||||
@pytest.mark.platform_x86_gpu_training
|
||||
@pytest.mark.env_onecard
|
||||
def test_dropout3d_int16():
|
||||
|
@ -98,7 +98,7 @@ def test_dropout3d_int16():
|
|||
dropout_3d(0.5, np.int16)
|
||||
dropout_3d(1.0, np.int16)
|
||||
|
||||
@pytest.mark.level0
|
||||
@pytest.mark.level2
|
||||
@pytest.mark.platform_x86_gpu_training
|
||||
@pytest.mark.env_onecard
|
||||
def test_dropout3d_int32():
|
||||
|
@ -106,7 +106,7 @@ def test_dropout3d_int32():
|
|||
dropout_3d(0.5, np.int32)
|
||||
dropout_3d(1.0, np.int32)
|
||||
|
||||
@pytest.mark.level0
|
||||
@pytest.mark.level2
|
||||
@pytest.mark.platform_x86_gpu_training
|
||||
@pytest.mark.env_onecard
|
||||
def test_dropout3d_int64():
|
||||
|
|
Loading…
Reference in New Issue