Skip to content
Open
Show file tree
Hide file tree
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
3 changes: 1 addition & 2 deletions tests/diffusion/distributed/test_sequence_parallel.py
Original file line number Diff line number Diff line change
Expand Up @@ -291,8 +291,7 @@ def test_sp_correctness(model_name: str):
print("=" * 70)


# TODO: After PR#1272 is merged, add markers
# @pytest.mark.advanced_model
@pytest.mark.advanced_model
Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

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

@yenuo26 PTAL

@pytest.mark.diffusion
@pytest.mark.parallel
@hardware_test(res={"cuda": "L4", "rocm": "MI325"}, num_cards={"cuda": 4, "rocm": 2})
Expand Down
2 changes: 1 addition & 1 deletion vllm_omni/diffusion/model_loader/gguf_adapters/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ def weights_iterator(self) -> Generator[tuple[str, torch.Tensor], None, None]:
raise NotImplementedError


# FIXME(Isotr0py): Sync implemnentation with upstream vLLM?
# FIXME(Isotr0py): Sync implementation with upstream vLLM?
def gguf_quant_weights_iterator(gguf_file: str) -> Generator[tuple[str, torch.Tensor]]:
"""
Iterate over the quant weights in the model gguf files and convert
Expand Down
Loading