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 b2e65cb commit 3696050Copy full SHA for 3696050
vllm/platforms/cpu.py
@@ -316,7 +316,8 @@ def check_and_update_config(cls, vllm_config: VllmConfig) -> None:
316
317
if (
318
platform.system() == "Linux"
319
- and Platform.get_cpu_architecture() == CpuArchEnum.ARM
+ and Platform.get_cpu_architecture()
320
+ in (CpuArchEnum.ARM, CpuArchEnum.POWERPC)
321
and not ("libomp" in ld_preload_str or "libgomp" in ld_preload_str)
322
):
323
# We need to LD_PRELOAD PyTorch's libgomp, otherwise only
0 commit comments