Closed sanketkaleoss closed 2 months ago
Can you show the error you've encountered during installation?
Can you show the error you've encountered during installation? Sure, here it is.
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
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
Thanks for the reply. I installed as suggested. But I am facing this issue now.
Perhaps the libdnnl-dev
/oneDNN
in apt-get is out of date for your linux distribution, you can install oneDNN
from source:
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
Your current environment
How you are installing vllm
Before submitting a new issue...