Skip to content

Commit c75dff6

Browse files
committed
Formatting.
1 parent 529feab commit c75dff6

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tests/test_layer_norm.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,9 @@ def test_layer_norm_compiled(irreps_in: str, seed: int, batch_size: int = 8):
4444
assert torch.allclose(output, output_compiled)
4545

4646

47-
@pytest.mark.parametrize("irreps_in", ["0e + 1o", "32x0e + 1o + 2e", "0e + 4x1o + 5e", "3x1o + 2x2o"])
47+
@pytest.mark.parametrize(
48+
"irreps_in", ["0e + 1o", "32x0e + 1o + 2e", "0e + 4x1o + 5e", "3x1o + 2x2o"]
49+
)
4850
def test_layer_norm(irreps_in: str):
4951
irreps_in = e3nn.o3.Irreps(irreps_in)
5052
layer = LayerNorm(irreps_in)

0 commit comments

Comments
 (0)