Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

disable flaky tests #1629

Merged
merged 4 commits into from
Jan 10, 2025
Merged
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: 5 additions & 1 deletion thunder/tests/test_networks.py
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ def test_nanogpt_complete_cudagraphs(executor, device, dtype):
decorators=(
pytest.mark.skipif(
version_between(torch.__version__, min_ver="2.7.0dev0", max_ver="2.7.0a99"),
reason="CUDA error: misaligned address",
reason="https://github.com/bitsandbytes-foundation/bitsandbytes/pull/1629",
t-vi marked this conversation as resolved.
Show resolved Hide resolved
),
),
)
Expand Down Expand Up @@ -367,6 +367,10 @@ def test_quantization():
assert_close(v, sd2[k])


@pytest.mark.skipif(
version_between(torch.__version__, min_ver="2.7.0dev0", max_ver="2.7.0a99"),
reason="https://github.com/bitsandbytes-foundation/bitsandbytes/pull/1629",
Copy link
Collaborator

Choose a reason for hiding this comment

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

Sorry I'm late to the party here.

This link leads me to a 404. BitsAndBytes pull request #'s / issue #'s are at around 1475 now, so ~150 below the 1629 mentioned here. Is this a private PR maybe? Or did you mean to copy/paste this PR (#1629) and B&B somehow got pulled in?

)
@thunder.tests.framework.requiresCUDA
def test_thunderfx_mistral_nemo_small():
"""
Expand Down
Loading