Skip to content

Commit

Permalink
Add MKLDNN headers to pip package (apache#14339)
Browse files Browse the repository at this point in the history
* add MKLDNN headers to pip package

* only add headers for mkl packages
  • Loading branch information
yuxihu authored and vdantu committed Mar 31, 2019
1 parent e669305 commit d3e10ca
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions tools/pip/MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,6 @@ recursive-include mxnet *.so.*
recursive-include mxnet *.dylib
recursive-include mxnet *_LICENSE
recursive-include mxnet *.h
recursive-include mxnet *.hpp
recursive-include mxnet *.cuh
recursive-include dmlc_tracker *.py
2 changes: 2 additions & 0 deletions tools/pip/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,8 @@ def has_ext_modules(self):
package_data['mxnet'].append('mxnet/libiomp5.so')
package_data['mxnet'].append('mxnet/libmkldnn.so.0')
shutil.copy(os.path.join(os.path.dirname(LIB_PATH[0]), '../MKLML_LICENSE'), os.path.join(CURRENT_DIR, 'mxnet'))
shutil.copytree(os.path.join(CURRENT_DIR, 'mxnet-build/3rdparty/mkldnn/include'),
os.path.join(CURRENT_DIR, 'mxnet/include/mkldnn'))
package_data['mxnet'].append('mxnet/MKLML_LICENSE')
if platform.system() == 'Linux':
shutil.copy(os.path.join(os.path.dirname(LIB_PATH[0]), 'libgfortran.so.3'), os.path.join(CURRENT_DIR, 'mxnet'))
Expand Down

0 comments on commit d3e10ca

Please sign in to comment.