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
3 changes: 1 addition & 2 deletions .buildkite/scripts/hardware_ci/run-amd-test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -327,8 +327,7 @@ apply_rocm_test_overrides() {
cmds="${cmds} \
--ignore=kernels/moe/test_moe.py \
--ignore=kernels/moe/test_cutlass_moe.py \
--ignore=kernels/moe/test_triton_moe_ptpc_fp8.py"
fi
fi

# --- Entrypoint ignores ---
if [[ $cmds == *" entrypoints/openai "* ]]; then
Expand Down
57 changes: 0 additions & 57 deletions tests/quantization/test_ptpc_fp8.py

This file was deleted.

4 changes: 0 additions & 4 deletions vllm/model_executor/layers/quantization/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
QuantizationMethods = Literal[
"awq",
"fp8",
"ptpc_fp8",
"fbgemm_fp8",
"fp_quant",
"modelopt",
Expand All @@ -39,7 +38,6 @@

DEPRECATED_QUANTIZATION_METHODS = [
"tpu_int8",
"ptpc_fp8",
"fbgemm_fp8",
"fp_quant",
"experts_int8",
Expand Down Expand Up @@ -132,7 +130,6 @@ def get_quantization_config(quantization: str) -> type[QuantizationConfig]:
from .mxfp4 import Mxfp4Config
from .mxfp8 import Mxfp8Config
from .petit import PetitNvFp4Config
from .ptpc_fp8 import PTPCFp8Config
from .torchao import TorchAOConfig

method_to_config: dict[str, type[QuantizationConfig]] = {
Expand All @@ -150,7 +147,6 @@ def get_quantization_config(quantization: str) -> type[QuantizationConfig]:
"gptq": GPTQConfig,
"compressed-tensors": CompressedTensorsConfig,
"bitsandbytes": BitsAndBytesConfig,
"ptpc_fp8": PTPCFp8Config,
"experts_int8": ExpertsInt8Config,
"quark": QuarkConfig,
"moe_wna16": MoeWNA16Config,
Expand Down
132 changes: 0 additions & 132 deletions vllm/model_executor/layers/quantization/ptpc_fp8.py

This file was deleted.

1 change: 0 additions & 1 deletion vllm/platforms/rocm.py
Original file line number Diff line number Diff line change
Expand Up @@ -378,7 +378,6 @@ class RocmPlatform(Platform):
"fbgemm_fp8",
"gguf",
"quark",
"ptpc_fp8",
"mxfp4",
"petit_nvfp4",
"torchao",
Expand Down
Loading