Skip to content

Commit 83f8bea

Browse files
rootfacebook-github-bot
root
authored andcommitted
Fix OSS test (#3012)
Summary: GPU CI tests were failing on this assertion since 10 months. Working test run https://github.com/pytorch/torchrec/actions/runs/15314133743 Pull Request resolved: #3012 Test Plan: Before: {F1978814280} After: {F1978814318} Reviewed By: TroyGarden Differential Revision: D75571603 Pulled By: kausv fbshipit-source-id: 75c057295f2febbf7626b8ea2f0a589795b2da6c
1 parent 416c3de commit 83f8bea

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

torchrec/distributed/tests/test_mc_embedding.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1124,7 +1124,7 @@ def test_sharding_zch_mc_ec_dedup_input_error(self, backend: str) -> None:
11241124
)
11251125
),
11261126
backend=backend,
1127-
input_hash_size=(2**62) - 1 + 10,
1127+
input_hash_size=(2**52) - 1 + 10,
11281128
),
11291129
except AssertionError as e:
11301130
self.assertTrue("0 != 1" in str(e))

0 commit comments

Comments
 (0)