We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 094f979 commit b5419b2Copy full SHA for b5419b2
vllm/envs.py
@@ -948,8 +948,7 @@ def get_vllm_port() -> int | None:
948
# Whether to use aiter triton kernels for gemm ops.
949
# By default is enabled.
950
"VLLM_ROCM_USE_AITER_TRITON_GEMM": lambda: (
951
- os.getenv("VLLM_ROCM_USE_AITER_TRITON_GEMM", "True").lower()
952
- in ("true", "1")
+ os.getenv("VLLM_ROCM_USE_AITER_TRITON_GEMM", "True").lower() in ("true", "1")
953
),
954
# use rocm skinny gemms
955
"VLLM_ROCM_USE_SKINNY_GEMM": lambda: (
0 commit comments