So I just installed anaconda, and when I type numpy.__config__.show()
, I get the following output:
blas_mkl_info:
libraries = ['mkl_rt']
library_dirs = ['C:/Anaconda3\\Library\\lib']
define_macros = [('SCIPY_MKL_H', None), ('HAVE_CBLAS', None)]
include_dirs = ['C:\\Program Files (x86)\\IntelSWTools\\compilers_and_libraries_2016.4.246\\windows\\mkl', 'C:\\Program Files (x86)\\IntelSWTools\\compilers_and_libraries_2016.4.246\\windows\\mkl\\include', 'C:\\Program Files (x86)\\IntelSWTools\\compilers_and_libraries_2016.4.246\\windows\\mkl\\lib', 'C:/Anaconda3\\Library\\include']
I have another python build (on separate computer) where the libraries = ['mkl_core_dll', 'mkl_intel_lp64_dll', 'mkl_intel_thread_dll']
My question is how do I change the anaconda build to include these different mkl libraries? I've tried messing with the site.cfg file in numpy, but no luck.
Also, does using different mkl libraries lead to different end results? I am really trying to get reproducible results between these two builds, and right now these different mkl settings seem to be messing it up.
Thanks in advance.