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
{{ message }}
This repository was archived by the owner on Aug 5, 2022. It is now read-only.
When attempting to build either the CPU only or GPU dockerfiles I am greeted with
fatal error: mkl_blas.h: No such file or directory
#include <mkl_blas.h>
Assuming this was because the MKL install was not being bootstrapped during the install, I added the following to my dockerfile
# Install Intel MKL.
RUN apt-get update \
&& apt-get install -y wget \
&& rm -rf /var/lib/apt/lists/*
RUN wget http://apt.repos.intel.com/intel-gpg-keys/GPG-PUB-KEY-INTEL-SW-PRODUCTS-2019.PUB
RUN sudo apt-key add GPG-PUB-KEY-INTEL-SW-PRODUCTS-2019.PUB
RUN sudo sh -c 'echo deb http://apt.repos.intel.com/mkl all main > /etc/apt/sources.list.d/intel-mkl.list'
RUN sudo apt-get update
RUN sudo apt-get install -y intel-mkl-64bit-2017.3-056