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
We claim that our code will run on processors that support at minimum SSE4.2 instructions. This means that we should be shipping libmkl_mc3.so in addition to the libraries we are currently shipping. Additionally, since we won't run on processors that support a maximum of SSSE3 nor Hi-k Core 2 processors (from 2009), we don't need to ship libmkl_vml_mc.so nor libmkl_vml_mc2.so.
We should correct this next time we upgrade PyTorch and have to revisit the PyTorch dependencies.
The text was updated successfully, but these errors were encountered:
Together with elastic#2233 and elastic#2235 this completes the upgrade to
PyTorch 1.11 for all platforms.
A small change to the way things are done is that we now copy
all MKL libraries into the Docker images, then copy the required
subset into our release distribution. This means we can change
the subset of MKL libraries that we redistribute without having
to rebuild our Docker images.
Fixeselastic#2126
Together with #2233 and #2235 this completes the upgrade to
PyTorch 1.11 for all platforms.
A small change to the way things are done is that we now copy
all MKL libraries into the Docker images, then copy the required
subset into our release distribution. This means we can change
the subset of MKL libraries that we redistribute without having
to rebuild our Docker images.
Fixes#2126
In our build setup instructions we specify the MKL libraries that we will redistribute, for example on Linux:
ml-cpp/build-setup/linux.md
Lines 280 to 285 in e262592
Based on the information in the "Computational Layer" section of the table in http://portal.nacad.ufrj.br/online/intel/mkl/common/mkl_userguide/GUID-C823F752-DDA3-4EFB-B673-222C2720FAFA.htm, the subset of libraries we are shipping is not quite correct.
We claim that our code will run on processors that support at minimum SSE4.2 instructions. This means that we should be shipping
libmkl_mc3.so
in addition to the libraries we are currently shipping. Additionally, since we won't run on processors that support a maximum of SSSE3 nor Hi-k Core 2 processors (from 2009), we don't need to shiplibmkl_vml_mc.so
norlibmkl_vml_mc2.so
.We should correct this next time we upgrade PyTorch and have to revisit the PyTorch dependencies.
The text was updated successfully, but these errors were encountered: