Skip to content
Merged
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
1 change: 1 addition & 0 deletions tests/unit_tests/ops/test_hpu_rotary_embedding.py
Original file line number Diff line number Diff line change
Expand Up @@ -201,6 +201,7 @@ def test_dynamic_ntk_scaling_rotary_embedding(
"head_size": head_size,
"rotary_dim": rotary_dim,
"max_position_embeddings": max_position_embeddings,
"max_trained_positions": max_position_embeddings,
"base": base,
Comment thread
pawel-olejniczak marked this conversation as resolved.
"is_neox_style": is_neox_style,
"scaling_factor": scaling_factor,
Expand Down
5 changes: 0 additions & 5 deletions vllm_gaudi/ops/hpu_compressed_tensors.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@
CompressedTensorsConfig,
CompressedTensorsMoEMethod,
CompressedTensorsKVCacheMethod,
SparsityCompressionConfig,
)
from vllm.model_executor.layers.quantization.compressed_tensors import (compressed_tensors_moe)
from vllm.model_executor.layers.quantization.compressed_tensors.compressed_tensors_moe import (
Expand Down Expand Up @@ -1056,8 +1055,6 @@ def __init__(
target_scheme_map: dict[str, Any],
ignore: list[str],
quant_format: str,
sparsity_scheme_map: dict[str, SparsityCompressionConfig],
sparsity_ignore_list: list[str],
kv_cache_scheme: dict[str, Any] | None = None,
config: dict[str, Any] | None = None,
transform_config: dict[str, Any] | None = None,
Comment thread
pawel-olejniczak marked this conversation as resolved.
Expand All @@ -1068,8 +1065,6 @@ def __init__(
target_scheme_map,
ignore,
quant_format,
sparsity_scheme_map,
sparsity_ignore_list,
kv_cache_scheme,
config,
transform_config,
Comment thread
pawel-olejniczak marked this conversation as resolved.
Expand Down
Loading