Skip to content

Commit

Permalink
Add ids for better display.
Browse files Browse the repository at this point in the history
  • Loading branch information
wujingyue committed Sep 18, 2024
1 parent 5ca5e11 commit 6fdcc6b
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion tests/python/test_transformer_engine.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,11 @@ class ComputeType(Enum):


@pytest.mark.mpi
@pytest.mark.parametrize("compute_type", [ComputeType.FORWARD, ComputeType.BACKWARD])
@pytest.mark.parametrize(
"compute_type",
[ComputeType.FORWARD, ComputeType.BACKWARD],
ids=["forward", "backward"],
)
def test_transformer_layer(multidevice_test, benchmark, compute_type):
# Hyperparameters for GPT-3
hidden_size = 12288
Expand Down

0 comments on commit 6fdcc6b

Please sign in to comment.