Heroku conda-buildpack bulilds with mkl add-on package

I tried to deploy a new version of my app to Heroku with conda-buildpack for numpy and scipy. However, an additional mkl-11.3.1 was downloaded and installed, which is 121.2 MB.

   Fetching package metadata: ....
   Solving package specifications: ..................
   Package plan for installation in environment /app/.heroku/miniconda:

   The following packages will be downloaded:

       package                    |            build
       ---------------------------|-----------------
       mkl-11.3.1                 |                0       121.2 MB
       numpy-1.10.4               |           py27_0         6.0 MB
       scipy-0.17.0               |      np110py27_1        29.6 MB
       ------------------------------------------------------------
                                              Total:       156.8 MB

   The following NEW packages will be INSTALLED:

       mkl:   11.3.1-0          

   The following packages will be UPDATED:

       numpy: 1.10.2-py27_0      --> 1.10.4-py27_0     
       scipy: 0.16.1-np110py27_0 --> 0.17.0-np110py27_1

In any case, nothing has changed in my conda-requirements.txt file , which

   numpy
   scipy

Does anyone know what is going on? Thank you very much!

+4
source share
1 answer

Conda began compiling numpy / scipy / numexpr with Intel MKL v2.5: https://www.continuum.io/blog/developer-blog/anaconda-25-release-now-mkl-optimizations

nomkl conda-requirements.txt, -mkl mkl.

+4

Source: https://habr.com/ru/post/1627604/


All Articles