Skip to content
Open
Changes from 1 commit
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
6 changes: 3 additions & 3 deletions tests/attention/test_fmha_v2_prefill.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
import math
from typing import Optional, Tuple, Union

pytestmark = pytest.mark.skip(
reason="todo(jimmyzho): temporarily skip this test due to hangs"
)
# pytestmark = pytest.mark.skip(
# reason="todo(jimmyzho): temporarily skip this test due to hangs"
# )
Comment on lines +6 to +8
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

The pytest.mark.skip decorator was commented out, suggesting the fmhav2 hang is resolved and this test should now pass. If this is the case, the todo comment stating 'temporarily skip this test due to hangs' is obsolete and should be removed to prevent future confusion. Consider removing the entire commented block if the test is intended to run permanently.


import flashinfer
from flashinfer.prefill import fmha_v2_prefill_deepseek
Expand Down
Loading