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

[ CI/Build ] Added E2E Test For Compressed Tensors #5839

Merged
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
Prev Previous commit
Next Next commit
format
  • Loading branch information
robertgshaw2-neuralmagic committed Jun 26, 2024
commit b435f7ff5ecce933253e40e5b4960bd7f782c55d
5 changes: 3 additions & 2 deletions tests/models/test_compressed_tensors.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,9 @@
NUM_LOGPROBS = 5


@pytest.mark.skipif(not is_quant_method_supported("compressed-tensors"),
reason="compressed-tensors is not supported on this machine type.")
@pytest.mark.skipif(
not is_quant_method_supported("compressed-tensors"),
reason="compressed-tensors is not supported on this machine type.")
@pytest.mark.parametrize("model_name", MODELS)
def test_models(
vllm_runner,
Expand Down
Loading