-
I am using WSL on an AMD cpu. I installed the DNNL runtime library by
But I still get the
Is this the correct way to install DNNL? How could I possibly resolve the |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
Hi @Youjack, It looks like something is wrong when it compiles CTranslate2 with DNNL. Can you try to follow these instructions to compile CTranslate2 manually and see what the error message is? For your reference, if I run these commands: git clone --recursive https://github.com/OpenNMT/CTranslate2.git
cd CTranslate2
mkdir build && cd build
cmake -DBUILD_CLI=OFF -DOPENMP_RUNTIME=NONE -DWITH_DNNL=ON -DWITH_MKL=OFF ..
make -j4 , the output would be:
Alternatively, you can try OpenBLAS: |
Beta Was this translation helpful? Give feedback.
-
Update: Since |
Beta Was this translation helpful? Give feedback.
Hi @Youjack,
It looks like something is wrong when it compiles CTranslate2 with DNNL. Can you try to follow these instructions to compile CTranslate2 manually and see what the error message is?
For your reference, if I run these commands:
, the output would be: