Skip to content
This repository has been archived by the owner on Nov 17, 2023. It is now read-only.

Commit

Permalink
Fix Horovod build error due to missing exported symbols (#17348)
Browse files Browse the repository at this point in the history
* fix build error due to  #17128

* whitelist all *MX* API

* Update libmxnet.sym

* Update libmxnet.ver

Co-authored-by: Sheng Zha <szha@users.noreply.github.com>
  • Loading branch information
apeforest and szha committed Jan 22, 2020
1 parent 557a29b commit a967d37
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 18 deletions.
13 changes: 4 additions & 9 deletions make/config/libmxnet.sym
Original file line number Diff line number Diff line change
@@ -1,15 +1,10 @@
MX*
NN*
_MX*
_NN*
mx*
nn*
_mx*
_nn*
*MX*
*NN*
*mx*
*nn*
Java_org_apache_mxnet*
*NDArray*
*Engine*Get*
*Storage*Get*
*on_enter_api*
*on_exit_api*
*MXAPISetLastError*
13 changes: 4 additions & 9 deletions make/config/libmxnet.ver
Original file line number Diff line number Diff line change
@@ -1,19 +1,14 @@
{
global:
NN*;
MX*;
_NN*;
_MX*;
nn*;
mx*;
_nn*;
_mx*;
*NN*;
*MX*;
*nn*;
*mx*;
Java_org_apache_mxnet*;
*NDArray*;
*Engine*Get*;
*Storage*Get*;
*on_enter_api*;
*on_exit_api*;
*MXAPISetLastError*;
local: *;
};

0 comments on commit a967d37

Please sign in to comment.