We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b4cb0de commit 3e77e8dCopy full SHA for 3e77e8d
1 file changed
sub-packages/bionemo-evo2/tests/bionemo/evo2/run/test_predict.py
@@ -75,18 +75,16 @@ def checkpoint_7b_1m_path() -> Path:
75
@pytest.mark.parametrize(
76
"ddp,pp,tp,wi",
77
[
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"),
+ pytest.param(1, 1, "epoch", id="ddp=1,pp=1,wi=epoch"),
+ pytest.param(2, 1, "epoch", id="ddp=2,pp=1,wi=epoch"),
+ pytest.param(2, 1, "batch", id="ddp=2,pp=1,wi=batch"),
81
pytest.param(
82
1,
83
2,
84
- 1,
85
"epoch",
86
- id="ddp=1,pp=2,tp=1,wi=epoch",
+ id="ddp=1,pp=2,wi=epoch",
87
marks=pytest.mark.skip("Pipeline parallelism test currently hangs."),
88
),
89
- pytest.param(1, 1, 2, "epoch", id="ddp=1,pp=1,tp=2,wi=epoch"),
90
],
91
)
92
def test_predict_evo2_runs(
0 commit comments