You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The `get_vllm_version` function compares device-specific versions (CUDA, ROCm, etc.) against `MAIN_CUDA_VERSION` regardless of the target device. This comparison is irrelevant and potentially misleading when the target device is CPU, as it could lead to the inclusion of `sep` (e.g., "+") in the version string even when no CUDA-related components are involved. The condition `gaudi_sw_version != MAIN_CUDA_VERSION` should only be evaluated for specific devices, not for general cases.