Skip to content

Commit 34f1343

Browse files
committed
Merge branch 'kylesayrs/transform_utils' into kylesayrs/transform_factory
2 parents 6901e02 + 47ae9fe commit 34f1343

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_transform/utils/test_hadamards.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ def test_packed_hadamard_compliant(had_func):
4646
def test_random_hadamard_matrix_compliant(size):
4747
had_matrix = random_hadamard_matrix(size)
4848
val_1 = torch.round(had_matrix @ had_matrix.T)
49-
assert torch.equal(val_1, torch.eye(size))
49+
assert torch.equal(val_1 / size, torch.eye(size))
5050

5151

5252
@pytest.mark.parametrize(

0 commit comments

Comments
 (0)