[fx] recovered skipped pipeline tests (#1338)

pull/1339/head
Frank Lee 2022-07-19 09:49:50 +08:00 committed by GitHub
parent 0c51ff2c13
commit f3ce7b8336
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 0 additions and 2 deletions

View File

@ -30,7 +30,6 @@ class MLP(torch.nn.Module):
return x
@pytest.mark.skip('skip due to CI environment')
def test_comm_size_compute():
model = MLP(MODEL_DIM)
input_sample = torch.rand(BATCH_SIZE, MODEL_DIM)

View File

@ -39,7 +39,6 @@ def pipeline_pass_test_helper(model, data, pass_func):
assert output.equal(origin_output)
@pytest.mark.skip('skip due to CI environment')
def test_pipeline_passes():
model = MLP(MODEL_DIM)
data = torch.rand(BATCH_SIZE, MODEL_DIM)