Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tests/v1/e2e/general/test_async_scheduling.py
Original file line number Diff line number Diff line change
Expand Up @@ -429,7 +429,7 @@ def _logprobs_match(
and lps_a.keys() == lps_b.keys()
and all(
a.decoded_token == b.decoded_token
and a.rank == b.rank
and a.rank == pytest.approx(b.rank, rel=0.005)
Comment thread
njhill marked this conversation as resolved.
and a.logprob == pytest.approx(b.logprob, rel=rel_tol, abs=abs_tol)
for a, b in ((lps_a[x], lps_b[x]) for x in lps_a)
)
Expand Down
Loading