forked from mindspore-Ecosystem/mindspore
!48399 Remove ST from GRUV2 and LSTMV2
Merge pull request !48399 from liuluobin/master_remove_rnnv2_st
This commit is contained in:
commit
a3ec17fc5a
|
@ -60,7 +60,6 @@ def get_weights_from_gru(gru_nn, has_bias):
|
|||
return weights
|
||||
|
||||
|
||||
@pytest.mark.level1
|
||||
@pytest.mark.platform_x86_gpu_training
|
||||
@pytest.mark.env_onecard
|
||||
@pytest.mark.parametrize("has_bias", [True, False])
|
||||
|
@ -94,7 +93,6 @@ def test_gruv2_op(has_bias, is_train, dtype):
|
|||
assert np.allclose(me_hy.asnumpy(), expect_hy.asnumpy(), rtol, atol)
|
||||
|
||||
|
||||
@pytest.mark.level0
|
||||
@pytest.mark.platform_x86_gpu_training
|
||||
@pytest.mark.env_onecard
|
||||
def test_gruv2_op_float64_exception():
|
||||
|
|
|
@ -60,7 +60,6 @@ def get_weights_from_lstm(lstm_nn, has_bias):
|
|||
return weights
|
||||
|
||||
|
||||
@pytest.mark.level1
|
||||
@pytest.mark.platform_x86_gpu_training
|
||||
@pytest.mark.env_onecard
|
||||
@pytest.mark.parametrize("has_bias", [True, False])
|
||||
|
@ -97,7 +96,6 @@ def test_lstmv2_op(has_bias, is_train, dtype):
|
|||
assert np.allclose(me_cy.asnumpy(), expect_cy.asnumpy(), rtol, atol)
|
||||
|
||||
|
||||
@pytest.mark.level0
|
||||
@pytest.mark.platform_x86_gpu_training
|
||||
@pytest.mark.env_onecard
|
||||
def test_lstmv2_op_float64_exception():
|
||||
|
|
Loading…
Reference in New Issue