Skip to content

Commit 3e77e8d

Browse files
committed
Remove TP test from the 1b model case
Signed-off-by: John St John <jstjohn@nvidia.com>
1 parent b4cb0de commit 3e77e8d

1 file changed

Lines changed: 4 additions & 6 deletions

File tree

sub-packages/bionemo-evo2/tests/bionemo/evo2/run/test_predict.py

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -75,18 +75,16 @@ def checkpoint_7b_1m_path() -> Path:
7575
@pytest.mark.parametrize(
7676
"ddp,pp,tp,wi",
7777
[
78-
pytest.param(1, 1, 1, "epoch", id="ddp=1,pp=1,tp=1,wi=epoch"),
79-
pytest.param(2, 1, 1, "epoch", id="ddp=2,pp=1,tp=1,wi=epoch"),
80-
pytest.param(2, 1, 1, "batch", id="ddp=2,pp=1,tp=1,wi=batch"),
78+
pytest.param(1, 1, "epoch", id="ddp=1,pp=1,wi=epoch"),
79+
pytest.param(2, 1, "epoch", id="ddp=2,pp=1,wi=epoch"),
80+
pytest.param(2, 1, "batch", id="ddp=2,pp=1,wi=batch"),
8181
pytest.param(
8282
1,
8383
2,
84-
1,
8584
"epoch",
86-
id="ddp=1,pp=2,tp=1,wi=epoch",
85+
id="ddp=1,pp=2,wi=epoch",
8786
marks=pytest.mark.skip("Pipeline parallelism test currently hangs."),
8887
),
89-
pytest.param(1, 1, 2, "epoch", id="ddp=1,pp=1,tp=2,wi=epoch"),
9088
],
9189
)
9290
def test_predict_evo2_runs(

0 commit comments

Comments
 (0)