mirror of https://github.com/hpcaitech/ColossalAI
[fx] recovered skipped pipeline tests (#1338)
parent
0c51ff2c13
commit
f3ce7b8336
|
@ -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)
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue