-
-
Notifications
You must be signed in to change notification settings - Fork 6.2k
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
[Installation]: vLLM Not Working on x86 CPUs from v0.6.1 Onwards #8460
Labels
installation
Installation problems
Comments
Can you show the error you've encountered during installation? |
You're missing oneAPI Deep Neural Network Library (oneDNN) dependency, you can install it along with other required deps with: apt-get install -y libnuma-dev libdnnl-dev opencl-dev |
Perhaps the git clone -b rls-v3.5 https://github.com/oneapi-src/oneDNN.git
cmake -B ./oneDNN/build -S ./oneDNN -G Ninja -DONEDNN_LIBRARY_TYPE=STATIC \
-DONEDNN_BUILD_DOC=OFF \
-DONEDNN_BUILD_EXAMPLES=OFF \
-DONEDNN_BUILD_TESTS=OFF \
-DONEDNN_BUILD_GRAPH=OFF \
-DONEDNN_ENABLE_WORKLOAD=INFERENCE \
-DONEDNN_ENABLE_PRIMITIVE=MATMUL
cmake --build ./oneDNN/build --target install --config Release |
# for free
to join this conversation on GitHub.
Already have an account?
# to comment
Your current environment
How you are installing vllm
sudo apt-get update -y sudo apt-get install -y gcc-12 g++-12 sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-12 10 --slave /usr/bin/g++ g++ /usr/bin/g++-12 pip install --upgrade pip pip install wheel packaging ninja setuptools>=49.4.0 numpy pip install -v -r requirements-cpu.txt --extra-index-url https://download.pytorch.org/whl/cpu VLLM_TARGET_DEVICE=cpu python setup.py install
Before submitting a new issue...
The text was updated successfully, but these errors were encountered: